| 375 | |
| 376 | |
| 377 | string System::get_compiler(int& comp) const |
| 378 | { |
| 379 | #if defined(_MSC_VER) |
| 380 | comp = 1; |
| 381 | #elif defined(__MINGW32__) |
| 382 | comp = 2; |
| 383 | #elif defined(__clang__) |
| 384 | comp = 4; // Out-of-order on purpose |
| 385 | #elif defined(__GNUC__) |
| 386 | comp = 3; |
| 387 | #else |
| 388 | comp = 0; |
| 389 | #endif |
| 390 | |
| 391 | return DDS_SYSTEM_COMPILER[static_cast<unsigned>(comp)]; |
| 392 | } |
| 393 | |
| 394 | |
| 395 | string System::get_constructor(int& cons) const |