From e543cc06462a8dc1f83bb3ece60d0529e0bc4d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 9 Feb 2017 11:12:25 +0100 Subject: [PATCH] Removed an obsolete file that somehow got into the previous master. --- include/internal/catch_meta.hpp | 41 --------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 include/internal/catch_meta.hpp diff --git a/include/internal/catch_meta.hpp b/include/internal/catch_meta.hpp deleted file mode 100644 index 28002c76..00000000 --- a/include/internal/catch_meta.hpp +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Created by Phil on 08/02/2017. - * - * 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_META_HPP_INCLUDED -#define TWOBLUECUBES_CATCH_META_HPP_INCLUDED - -#if defined(CATCH_CONFIG_CPP11_TYPE_TRAITS) -#include -#endif - - -namespace Catch { - -#if defined(CATCH_CONFIG_CPP11_TYPE_TRAITS) - - template - using add_lvalue_reference = std::add_lvalue_reference; - -#else - - template - struct add_l_value_reference { - typedef T& type; - }; - template - struct add_l_value_reference { - typedef T& type; - }; - template - struct add_l_value_reference { - typedef T& type; - }; - -#endif - -} - -#endif // TWOBLUECUBES_CATCH_META_HPP_INCLUDED \ No newline at end of file