Rogier 0aee764203 Use C++11 if possible
This allows the use of more efficient (i.e. faster) data structures
like unordered_map.
2014-05-22 10:41:12 +02:00

7 lines
194 B
C++

// File used by cmake to check for c++11 support
// See: CmakeLists.txt
// Just a symbol named 'main' is required for compilation to succeed.
// It does not have to be a function :-)
int main;