Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yaml-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yaml-cpp
Commits
fe57829a
Commit
fe57829a
authored
Oct 27, 2009
by
Jesse Beder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed crt stuff (we can do memory leak checking in Linux easier)
parent
b5c53d9e
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
2 additions
and
52 deletions
+2
-52
include/crt.h
+0
-17
include/yaml.h
+0
-1
src/aliascontent.cpp
+0
-1
src/content.cpp
+0
-13
src/content.h
+2
-2
src/exp.cpp
+0
-1
src/iterator.cpp
+0
-1
src/map.cpp
+0
-1
src/node.cpp
+0
-1
src/parser.cpp
+0
-1
src/parserstate.cpp
+0
-1
src/regex.cpp
+0
-1
src/scalar.cpp
+0
-1
src/scanner.cpp
+0
-1
src/scanscalar.cpp
+0
-1
src/scantoken.cpp
+0
-1
src/sequence.cpp
+0
-1
src/simplekey.cpp
+0
-1
src/stream.cpp
+0
-1
test/main.cpp
+0
-4
No files found.
include/crt.h
deleted
100644 → 0
View file @
b5c53d9e
#pragma once
#ifndef CRT_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define CRT_H_62B23520_7C8E_11DE_8A39_0800200C9A66
// for detecting memory leaks
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif // _DEBUG
#endif // CRT_H_62B23520_7C8E_11DE_8A39_0800200C9A66
include/yaml.h
View file @
fe57829a
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
#define YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#include "crt.h"
#include "parser.h"
#include "parser.h"
#include "node.h"
#include "node.h"
#include "iterator.h"
#include "iterator.h"
...
...
src/aliascontent.cpp
View file @
fe57829a
#include "crt.h"
#include "aliascontent.h"
#include "aliascontent.h"
namespace
YAML
namespace
YAML
...
...
src/content.cpp
deleted
100644 → 0
View file @
b5c53d9e
#include "crt.h"
#include "content.h"
namespace
YAML
{
Content
::
Content
()
{
}
Content
::~
Content
()
{
}
}
src/content.h
View file @
fe57829a
...
@@ -23,8 +23,8 @@ namespace YAML
...
@@ -23,8 +23,8 @@ namespace YAML
class
Content
class
Content
{
{
public
:
public
:
Content
()
;
Content
()
{}
virtual
~
Content
()
;
virtual
~
Content
()
{}
virtual
Content
*
Clone
()
const
=
0
;
virtual
Content
*
Clone
()
const
=
0
;
...
...
src/exp.cpp
View file @
fe57829a
#include "crt.h"
#include "exp.h"
#include "exp.h"
#include "exceptions.h"
#include "exceptions.h"
#include <sstream>
#include <sstream>
...
...
src/iterator.cpp
View file @
fe57829a
#include "crt.h"
#include "node.h"
#include "node.h"
#include "exceptions.h"
#include "exceptions.h"
#include "iterpriv.h"
#include "iterpriv.h"
...
...
src/map.cpp
View file @
fe57829a
#include "crt.h"
#include "map.h"
#include "map.h"
#include "node.h"
#include "node.h"
#include "scanner.h"
#include "scanner.h"
...
...
src/node.cpp
View file @
fe57829a
#include "crt.h"
#include "node.h"
#include "node.h"
#include "token.h"
#include "token.h"
#include "scanner.h"
#include "scanner.h"
...
...
src/parser.cpp
View file @
fe57829a
#include "crt.h"
#include "parser.h"
#include "parser.h"
#include "scanner.h"
#include "scanner.h"
#include "token.h"
#include "token.h"
...
...
src/parserstate.cpp
View file @
fe57829a
#include "crt.h"
#include "parserstate.h"
#include "parserstate.h"
namespace
YAML
namespace
YAML
...
...
src/regex.cpp
View file @
fe57829a
#include "crt.h"
#include "regex.h"
#include "regex.h"
namespace
YAML
namespace
YAML
...
...
src/scalar.cpp
View file @
fe57829a
#include "crt.h"
#include "scalar.h"
#include "scalar.h"
#include "scanner.h"
#include "scanner.h"
#include "token.h"
#include "token.h"
...
...
src/scanner.cpp
View file @
fe57829a
#include "crt.h"
#include "scanner.h"
#include "scanner.h"
#include "token.h"
#include "token.h"
#include "exceptions.h"
#include "exceptions.h"
...
...
src/scanscalar.cpp
View file @
fe57829a
#include "crt.h"
#include "scanscalar.h"
#include "scanscalar.h"
#include "scanner.h"
#include "scanner.h"
#include "exp.h"
#include "exp.h"
...
...
src/scantoken.cpp
View file @
fe57829a
#include "crt.h"
#include "scanner.h"
#include "scanner.h"
#include "token.h"
#include "token.h"
#include "exceptions.h"
#include "exceptions.h"
...
...
src/sequence.cpp
View file @
fe57829a
#include "crt.h"
#include "sequence.h"
#include "sequence.h"
#include "node.h"
#include "node.h"
#include "scanner.h"
#include "scanner.h"
...
...
src/simplekey.cpp
View file @
fe57829a
#include "crt.h"
#include "scanner.h"
#include "scanner.h"
#include "token.h"
#include "token.h"
#include "exceptions.h"
#include "exceptions.h"
...
...
src/stream.cpp
View file @
fe57829a
#include "crt.h"
#include "stream.h"
#include "stream.h"
#include <iostream>
#include <iostream>
#include "exp.h"
#include "exp.h"
...
...
test/main.cpp
View file @
fe57829a
...
@@ -2,10 +2,6 @@
...
@@ -2,10 +2,6 @@
int
main
()
int
main
()
{
{
#ifdef WINDOWS
_CrtSetDbgFlag
(
_CRTDBG_LEAK_CHECK_DF
|
_CRTDBG_ALLOC_MEM_DF
);
#endif // WINDOWS
Test
::
RunAll
();
Test
::
RunAll
();
return
0
;
return
0
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment