From bcd030e571fd25bda9a37f8734ac8f5398c5df01 Mon Sep 17 00:00:00 2001 From: Daniel Frey Date: Sat, 23 Nov 2024 01:17:54 +0100 Subject: [PATCH] Remove obsolete helper --- CMakeLists.txt | 1 - include/tao/pq/internal/dependent_false.hpp | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 include/tao/pq/internal/dependent_false.hpp 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