diff --git a/CMakeLists.txt.in b/CMakeLists.txt.in index 8c64985a..dad64202 100644 --- a/CMakeLists.txt.in +++ b/CMakeLists.txt.in @@ -7,11 +7,11 @@ ExternalProject_Add(googletest GIT_REPOSITORY https://github.com/google/googletest.git #GIT_TAG master # Temporary: to avoid https://github.com/google/googletest/issues/2711 - GIT_TAG release-1.10.0 + GIT_TAG v1.16.0 SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src" BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build" CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND "" TEST_COMMAND "" -) \ No newline at end of file +) diff --git a/include/find_embedding/pairing_queue.hpp b/include/find_embedding/pairing_queue.hpp index f1dd0f18..d5c50f67 100644 --- a/include/find_embedding/pairing_queue.hpp +++ b/include/find_embedding/pairing_queue.hpp @@ -41,10 +41,10 @@ class pairing_node : public N { pairing_node *desc; public: - pairing_node() {} + pairing_node() {} template - pairing_node(Args... args) : N(args...), next(nullptr), desc(nullptr) {} + pairing_node(Args... args) : N(args...), next(nullptr), desc(nullptr) {} //! the basic operation of the pairing queue -- put `this` and `other` //! into heap-order diff --git a/include/find_embedding/util.hpp b/include/find_embedding/util.hpp index 7697ab5d..14d0e7ed 100644 --- a/include/find_embedding/util.hpp +++ b/include/find_embedding/util.hpp @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include