commit c33b34dca38e2363827cb98a32120e8862c600bf parent 05bf393a66bf6add0fd34663a0213fc9f3f198cf Author: d.levin256@gmail.com <d.levin256@gmail.com> Date: Thu, 3 Nov 2016 07:39:11 +0300 Make library_version function static Diffstat:
M | include/kfr/version.hpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/version.hpp b/include/kfr/version.hpp @@ -31,5 +31,5 @@ namespace kfr { /// Returns string representation of the KFR version (including target architecture) -inline const char* library_version() { return KFR_VERSION_FULL; } +inline static const char* library_version() { return KFR_VERSION_FULL; } }