Fix compile error on Centos

This commit is contained in:
Esa Korhonen
2019-08-19 15:46:06 +03:00
committed by Johan Wikman
parent 34ab1843b2
commit 5a2c92c86d
2 changed files with 2 additions and 3 deletions

View File

@ -26,5 +26,5 @@ target_link_libraries(test_host_class maxbase pthread rt)
add_test(test_host_class test_host_class)
add_executable(test_name_lookup test_name_lookup.cc)
target_link_libraries(test_name_lookup maxbase)
target_link_libraries(test_name_lookup maxbase pthread rt)
add_test(test_name_lookup test_name_lookup)

View File

@ -11,8 +11,7 @@
* Public License.
*/
#include <maxbase/host.hh>
#include <algorithm>
#include <unordered_set>
int main()
{