From bba7be99a3874186824a9aea635346541cae157b Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 10 Sep 2020 23:41:53 +0200 Subject: [PATCH] Remove override.h --- debian/copyright | 1 - ext/libstrawberry-common/core/override.h | 33 ------------------------ 2 files changed, 34 deletions(-) delete mode 100644 ext/libstrawberry-common/core/override.h diff --git a/debian/copyright b/debian/copyright index f4f651b5b..9e1f4da00 100644 --- a/debian/copyright +++ b/debian/copyright @@ -12,7 +12,6 @@ Files: src/core/timeconstants.h ext/libstrawberry-common/core/logging.h ext/libstrawberry-common/core/messagehandler.cpp ext/libstrawberry-common/core/messagehandler.h - ext/libstrawberry-common/core/override.h Copyright: 2011, 2012, David Sansome License: Apache-2.0 diff --git a/ext/libstrawberry-common/core/override.h b/ext/libstrawberry-common/core/override.h deleted file mode 100644 index 9e4bcd10d..000000000 --- a/ext/libstrawberry-common/core/override.h +++ /dev/null @@ -1,33 +0,0 @@ -/* This file is part of Strawberry. - Copyright 2012, David Sansome - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ - -#ifndef OVERRIDE_H -#define OVERRIDE_H - -// Defines the OVERRIDE macro as C++11's override control keyword if -// it is available. - -#ifndef __has_extension - #define __has_extension(x) 0 -#endif - -#if __has_extension(cxx_override_control) // Clang feature checking macro. -# define OVERRIDE override -#else -# define OVERRIDE -#endif - -#endif // OVERRIDE_H