Import Geant4 10.4.0 source tree
This commit is contained in:
@@ -182,23 +182,24 @@ inline char* compiler() {
|
||||
toss(compiler_name(),pos,l);pos += l;
|
||||
|
||||
#if defined(__clang__)
|
||||
*pos++ = '_';
|
||||
*pos = '_';pos++;
|
||||
tosu<unsigned int>(__clang_major__,pos,l);pos += l;
|
||||
tosu<unsigned int>(__clang_minor__,pos,l);pos += l;
|
||||
tosu<unsigned int>(__clang_patchlevel__,pos,l);pos += l;
|
||||
#elif defined(__GNUC__)
|
||||
*pos++ = '_';
|
||||
*pos = '_';pos++;
|
||||
tosu<unsigned int>(__GNUC__,pos,l);pos += l;
|
||||
tosu<unsigned int>(__GNUC_MINOR__,pos,l);pos += l;
|
||||
tosu<unsigned int>(__GNUC_PATCHLEVEL__,pos,l);pos += l;
|
||||
#elif defined(_MSC_VER)
|
||||
*pos++ = '_';
|
||||
*pos = '_';pos++;
|
||||
tosu<unsigned int>(_MSC_VER,pos,l);pos += l;
|
||||
//_mfc_
|
||||
//tosu<unsigned int>(_MFC_VER,pos,l);pos += l;
|
||||
#elif defined(__alpha)
|
||||
#else
|
||||
#endif
|
||||
*pos = 0;
|
||||
return s_s;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user