Skip to content
Snippets Groups Projects
Commit 560da4f0 authored by Danilo Piparo's avatar Danilo Piparo
Browse files

[ROOT-7004] Reactivate inclusion of regex: it works on osx.

parent 17c1d0d5
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,6 @@ def getSTLIncludes(): ...@@ -66,7 +66,6 @@ def getSTLIncludes():
""" """
Here we include the list of c++11 stl headers Here we include the list of c++11 stl headers
From http://en.cppreference.com/w/cpp/header From http://en.cppreference.com/w/cpp/header
regex is removed until ROOT-7004 is fixed
valarray is removed because it causes lots of compilation at startup. valarray is removed because it causes lots of compilation at startup.
""" """
stlHeadersList = ("cstdlib", stlHeadersList = ("cstdlib",
...@@ -145,6 +144,7 @@ def getSTLIncludes(): ...@@ -145,6 +144,7 @@ def getSTLIncludes():
"ccomplex", "ccomplex",
"ctgmath", "ctgmath",
"cstdalign", "cstdalign",
"regex",
"cstdbool") "cstdbool")
allHeadersPartContent = "// STL headers\n" allHeadersPartContent = "// STL headers\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment