mirror of
https://github.com/NGSolve/netgen.git
synced 2026-06-16 00:20:34 +08:00
8 lines
161 B
C++
8 lines
161 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
if (__GXX_ABI_VERSION >= 2000 || __GXX_ABI_VERSION < 1000) return 1;
|
|
std::cout << (__GXX_ABI_VERSION % 100);
|
|
return 0;
|
|
}
|