Rename regex.h and regex.cpp to regex_yaml, so they don't interfere with the posix variant

This commit is contained in:
Jesse Beder
2014-03-22 19:03:49 -05:00
parent 9b4db068bb
commit 32125697f2
5 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
#pragma once #pragma once
#endif #endif
#include "regex.h" #include "regex_yaml.h"
#include <string> #include <string>
#include <ios> #include <ios>
#include "stream.h" #include "stream.h"

View File

@@ -1,4 +1,4 @@
#include "regex.h" #include "regex_yaml.h"
namespace YAML { namespace YAML {
// constructors // constructors

View File

@@ -8,7 +8,7 @@
#endif #endif
#include <string> #include <string>
#include "regex.h" #include "regex_yaml.h"
#include "stream.h" #include "stream.h"
namespace YAML { namespace YAML {

View File

@@ -1,5 +1,5 @@
#include "scanner.h" #include "scanner.h"
#include "regex.h" #include "regex_yaml.h"
#include "exp.h" #include "exp.h"
#include "yaml-cpp/exceptions.h" #include "yaml-cpp/exceptions.h"