apply clang-format

This commit is contained in:
Axel Kohlmeyer
2021-10-02 18:26:46 -04:00
parent 69a8dfe4d9
commit a6aa3fd3ee

View File

@ -146,7 +146,7 @@ double platform::cputime()
return rv;
}
#if defined(_MSC_VER)
#pragma optimize("",on)
#pragma optimize("", on)
#endif
/* ----------------------------------------------------------------------
@ -281,19 +281,19 @@ std::string platform::compiler_info()
{
std::string buf = "(Unknown)";
#if defined(__INTEL_LLVM_COMPILER)
double version = static_cast<double>(__INTEL_LLVM_COMPILER)*0.01;
double version = static_cast<double>(__INTEL_LLVM_COMPILER) * 0.01;
buf = fmt::format("Intel LLVM C++ {:.1f} / {}", version, __VERSION__);
#elif defined(__ibmxl__)
buf = fmt::format("IBM XL C/C++ (Clang) {}.{}.{}",
__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__);
buf = fmt::format("IBM XL C/C++ (Clang) {}.{}.{}", __ibmxl_version__, __ibmxl_release__,
__ibmxl_modification__);
#elif defined(__clang__)
buf = fmt::format("Clang C++ {}", __VERSION__);
#elif defined(__PGI)
buf = fmt::format("PGI C++ {}.{}",__PGIC__,__PGIC_MINOR__);
buf = fmt::format("PGI C++ {}.{}", __PGIC__, __PGIC_MINOR__);
#elif defined(__INTEL_COMPILER)
double version = static_cast<double>(__INTEL_COMPILER)*0.01;
buf = fmt::format("Intel Classic C++ {:.2f}.{} / {}", version,
__INTEL_COMPILER_UPDATE, __VERSION__);
double version = static_cast<double>(__INTEL_COMPILER) * 0.01;
buf = fmt::format("Intel Classic C++ {:.2f}.{} / {}", version, __INTEL_COMPILER_UPDATE,
__VERSION__);
#elif defined(__MINGW64__)
buf = fmt::format("MinGW-w64 64bit {}.{} / GNU C++ {}", __MINGW64_VERSION_MAJOR,
__MINGW64_VERSION_MINOR, __VERSION__);
@ -301,11 +301,12 @@ std::string platform::compiler_info()
buf = fmt::format("MinGW-w64 32bit {}.{} / GNU C++ {}", __MINGW32_MAJOR_VERSION,
__MINGW32_MINOR_VERSION, __VERSION__);
#elif defined(__GNUC__)
buf = fmt::format("GNU C++ {}", __VERSION__);
buf = fmt::format("GNU C++ {}", __VERSION__);
#elif defined(_MSC_VER) && (_MSC_VER > 1920) && (_MSC_VER < 2000)
constexpr int major = _MSC_VER / 100;
constexpr int minor = _MSC_VER - major *100;
buf = "Microsoft Visual Studio 20" + std::to_string(major) + ", C/C++ " + std::to_string(major-5) + "." + std::to_string(minor);
constexpr int minor = _MSC_VER - major * 100;
buf = "Microsoft Visual Studio 20" + std::to_string(major) + ", C/C++ " +
std::to_string(major - 5) + "." + std::to_string(minor);
#else
buf = "(Unknown)";
#endif