Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2015-11-11 17:13:28 +0300
committerYuri Gorshenin <y@maps.me>2015-11-11 17:58:28 +0300
commit8c25f30cf0dec7620baf7cf11d8e572f289d97af (patch)
treee64bd73f3576c201da14cf585f0ebadf77fe5e0f /std
parent82e272fd9b08bcf151ff5e6071843b5797401353 (diff)
[base, std] Get rid of boost xpressive dependency.
Diffstat (limited to 'std')
-rw-r--r--std/regex.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/std/regex.hpp b/std/regex.hpp
new file mode 100644
index 0000000000..dfa518a519
--- /dev/null
+++ b/std/regex.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#if defined(new)
+#undef new
+#endif
+
+#include <regex>
+
+using std::regex;
+using std::regex_match;
+using std::regex_search;
+using std::sregex_token_iterator;
+
+#if defined(DEBUG_NEW)
+#define new DEBUG_NEW
+#endif