commit d2e24c2c6a9974d540558d86eefbf0f2a8aab2f5 parent 027ae81e752b0ed057ab422e881a865824dc6ad1 Author: [email protected] <[email protected]> Date: Wed, 31 Aug 2016 09:15:15 +0300 library_version should return const char* Removed dependency from <string> Diffstat:
M | include/kfr/base/kfr.h | | | 6 | ++++++ |
M | include/kfr/version.hpp | | | 8 | ++------ |
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/include/kfr/base/kfr.h b/include/kfr/base/kfr.h @@ -32,5 +32,11 @@ constexpr int version = KFR_VERSION; } #endif +#ifdef CMT_ARCH_X64 +#define KFR_VERSION_FULL "KFR " KFR_VERSION_STRING " " CMT_STRINGIFY(CMT_ARCH_NAME) " 64-bit" +#else +#define KFR_VERSION_FULL "KFR " KFR_VERSION_STRING " " CMT_STRINGIFY(CMT_ARCH_NAME) " 32-bit" +#endif + #define KFR_INTRIN CMT_INTRIN #define KFR_SINTRIN CMT_INTRIN static diff --git a/include/kfr/version.hpp b/include/kfr/version.hpp @@ -26,14 +26,10 @@ #pragma once #include "base/types.hpp" -#include <string> namespace kfr { + /// Returns string representation of the KFR version (including target architecture) -static std::string library_version() -{ - return "KFR " + std::string(version_string) + " " + CMT_STRINGIFY(CMT_ARCH_NAME) + - bitness_const(" 32-bit", " 64-bit"); -} +inline const char* library_version() { return KFR_VERSION_FULL; } }