Added CMake scripts for other platforms\nFixed some bugs that gcc complained about\nFixed CR/LF vs LF bug

This commit is contained in:
Jesse Beder
2008-08-07 03:30:56 +00:00
parent 813817f1ab
commit ec2ecad197
30 changed files with 233 additions and 82 deletions

View File

@@ -7,4 +7,5 @@
#include <stdlib.h>
#include <crtdbg.h>
#endif // _DEBUG
#endif // _DEBUG

View File

@@ -10,6 +10,7 @@ namespace YAML
public:
ParserException(int line_, int column_, const std::string& msg_)
: line(line_), column(column_), msg(msg_) {}
virtual ~ParserException() throw () {}
int line, column;
std::string msg;

View File

@@ -4,4 +4,5 @@
#include "parser.h"
#include "node.h"
#include "iterator.h"
#include "exceptions.h"
#include "exceptions.h"