Commit dd249e2b authored by Jakob Otto's avatar Jakob Otto

Remove compiler check

parent 43be37b7
#include <iostream>
using namespace std;
int main() {
#ifdef __clang__
cout << __clang_major__ << "." << __clang_minor__;
#elif defined(__GNUC__)
cout << __GNUC__ << "." << __GNUC_MINOR__;
#else
cout << "0.0";
#endif
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment