MCPcopy Create free account
hub / github.com/dds-bridge/dds / get_compiler

Method get_compiler

library/src/system/system.cpp:377–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

375
376
377string 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
395string System::get_constructor(int& cons) const

Callers 1

GetDDSInfoFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected