commit c8adb8dbfef8c6f82f33825126fb8f2d1b2416f9 parent cabe53fbd452a08664ed160d007410df3f9a154b Author: [email protected] <[email protected]> Date: Thu, 30 Jun 2016 13:08:55 +0300 link against libm Diffstat:
M | include/kfr/cometa.hpp | | | 1 | + |
M | tests/CMakeLists.txt | | | 2 | +- |
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/kfr/cometa.hpp b/include/kfr/cometa.hpp @@ -15,6 +15,7 @@ namespace cometa { using std::size_t; +using std::ptrdiff_t; using pvoid = void*; diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt @@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.0) add_compile_options(-fno-exceptions -fno-rtti -ftemplate-backtrace-limit=0) -link_libraries(stdc++ pthread) +link_libraries(stdc++ pthread m) include_directories(../include)