diff --git a/CMakeLists.txt b/CMakeLists.txt index 726ac96..64a057c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,6 @@ set(taopq_INCLUDE_FILES ${taopq_INCLUDE_DIRS}/tao/pq/field.hpp ${taopq_INCLUDE_DIRS}/tao/pq/internal/aggregate.hpp ${taopq_INCLUDE_DIRS}/tao/pq/internal/demangle.hpp - ${taopq_INCLUDE_DIRS}/tao/pq/internal/dependent_false.hpp ${taopq_INCLUDE_DIRS}/tao/pq/internal/exclusive_scan.hpp ${taopq_INCLUDE_DIRS}/tao/pq/internal/from_chars.hpp ${taopq_INCLUDE_DIRS}/tao/pq/internal/gen.hpp diff --git a/include/tao/pq/internal/dependent_false.hpp b/include/tao/pq/internal/dependent_false.hpp deleted file mode 100644 index 1f18b48..0000000 --- a/include/tao/pq/internal/dependent_false.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch -// Distributed under the Boost Software License, Version 1.0. -// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt) - -#ifndef TAO_PQ_INTERNAL_DEPENDENT_FALSE_HPP -#define TAO_PQ_INTERNAL_DEPENDENT_FALSE_HPP - -namespace tao::pq::internal -{ - template< typename... > - inline constexpr bool dependent_false = false; - -} // namespace tao::pq::internal - -#endif