From 3836aa9cebbd546fc3036836aac3b2e3f5fd9b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sat, 18 Apr 2020 15:41:53 +0200 Subject: [PATCH] Remove catch_user_interfaces It used to be a file that would collect interfaces we always wanted to provide to users, so that the single header stitching script would place them in the common part of the single header version. As v3 is moving to separate headers model, the file is no longer useful. --- src/CMakeLists.txt | 1 - src/catch2/catch_user_interfaces.h | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 src/catch2/catch_user_interfaces.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 20d15d23..a1f57c7c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -118,7 +118,6 @@ set(INTERNAL_HEADERS ${SOURCES_DIR}/catch_tostring.h ${SOURCES_DIR}/catch_totals.h ${SOURCES_DIR}/catch_uncaught_exceptions.h - ${SOURCES_DIR}/catch_user_interfaces.h ${SOURCES_DIR}/catch_version.h ${SOURCES_DIR}/catch_version_macros.hpp ${SOURCES_DIR}/catch_wildcard_pattern.h diff --git a/src/catch2/catch_user_interfaces.h b/src/catch2/catch_user_interfaces.h deleted file mode 100644 index 35acb77b..00000000 --- a/src/catch2/catch_user_interfaces.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Created by Martin on 21/11/2017. - * - * This file collects declaration that we want to expose to test files. - * These declarations are expected to be duplicated elsewhere, - * together with their implementation. - * - * Distributed under the Boost Software License, Version 1.0. (See accompanying - * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - */ -#ifndef TWOBLUECUBES_CATCH_USER_INTERFACES_H_INCLUDED -#define TWOBLUECUBES_CATCH_USER_INTERFACES_H_INCLUDED - -namespace Catch { - unsigned int rngSeed(); -} - -#endif // TWOBLUECUBES_CATCH_USER_INTERFACES_H_INCLUDED