Voxellancer  0.3
A game about voxels in space
 All Classes Functions Pages
def_regex.h
1 #ifdef REGEX_USE_BOOST
2 #include <boost/regex.hpp>
3 namespace regexns = boost;
4 #else
5 #include <regex>
6 namespace regexns = std;
7 #endif