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

regex.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfa518a5197d28a8dc67d589584fdaf1583fa5ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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