Skip to content

Commit

Permalink
Small fixes for rare build failures (#9)
Browse files Browse the repository at this point in the history
* fix: add missing header for size_t

* fix: link against gtest
  • Loading branch information
hmenke authored Mar 17, 2022
1 parent d79810d commit 3465b5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions gftools/eval_expression.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <utility>
#include <array>
#include <cstddef>

//#include "tuple_tools.hpp" // only for debug

Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ grid_object_test
foreach (test ${tests})
set(test_src ${test}.cpp)
add_executable(${test} ${test_src})
target_link_libraries(${test} gtest_main gftools)
target_link_libraries(${test} gtest gtest_main gftools)
add_test(${test} ${test})
endforeach(test)

0 comments on commit 3465b5e

Please sign in to comment.