summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-10-29 11:08:25 -0400
committerKonstantin Käfer <mail@kkaefer.com>2014-10-30 11:34:14 -0400
commit8f1c2b3bce579a0a7ae3ed38aacfc7feae33ccbf (patch)
tree75556f63c973d0d4e2680821ecf4fd050b6657bb /src
parent152545d33a74a9bd0060fe1b75b307d0636e69ea (diff)
downloadqtlocation-mapboxgl-8f1c2b3bce579a0a7ae3ed38aacfc7feae33ccbf.tar.gz
remove regex/boost regex usage
Diffstat (limited to 'src')
-rw-r--r--src/map/tile_parser.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/map/tile_parser.cpp b/src/map/tile_parser.cpp
index 72f97096a0..e707cde620 100644
--- a/src/map/tile_parser.cpp
+++ b/src/map/tile_parser.cpp
@@ -22,14 +22,6 @@
#include <locale>
-#ifdef __linux__
-#include <boost/regex.hpp>
-namespace regex_impl = boost;
-#else
-#include <regex>
-namespace regex_impl = std;
-#endif
-
namespace mbgl {
// Note: This destructor is seemingly empty, but we need to declare it anyway