From 8f0dda5eab181b0f14f2652b4e984aaaae3f258c Mon Sep 17 00:00:00 2001 From: rtk0c Date: Mon, 27 Jun 2022 18:27:13 -0700 Subject: Start from a clean slate --- 3rdparty/sqlitecpp/source/SQLiteCpp/Utils.h | 31 ----------------------------- 1 file changed, 31 deletions(-) delete mode 100644 3rdparty/sqlitecpp/source/SQLiteCpp/Utils.h (limited to '3rdparty/sqlitecpp/source/SQLiteCpp/Utils.h') diff --git a/3rdparty/sqlitecpp/source/SQLiteCpp/Utils.h b/3rdparty/sqlitecpp/source/SQLiteCpp/Utils.h deleted file mode 100644 index f053b3f..0000000 --- a/3rdparty/sqlitecpp/source/SQLiteCpp/Utils.h +++ /dev/null @@ -1,31 +0,0 @@ -/** - * @file Utils.h - * @ingroup SQLiteCpp - * @brief Definition of the SQLITECPP_PURE_FUNC macro. - * - * Copyright (c) 2012-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) - * - * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt - * or copy at http://opensource.org/licenses/MIT) - */ -#pragma once - -// macro taken from https://github.com/nemequ/hedley/blob/master/hedley.h that was in public domain at this time -#if defined(__GNUC__) || defined(__GNUG__) || defined(__clang__) ||\ -(defined(__INTEL_COMPILER) && __INTEL_COMPILER > 1600) ||\ -(defined(__ARMCC_VERSION) && __ARMCC_VERSION > 4010000) ||\ -(\ - defined(__TI_COMPILER_VERSION__) && (\ - __TI_COMPILER_VERSION__ > 8003000 ||\ - (__TI_COMPILER_VERSION__ > 7003000 && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))\ - )\ -) -#if defined(__has_attribute) -#if !defined(SQLITECPP_PURE_FUNC) && __has_attribute(pure) -#define SQLITECPP_PURE_FUNC __attribute__((pure)) -#endif -#endif -#endif -#if !defined(SQLITECPP_PURE_FUNC) -#define SQLITECPP_PURE_FUNC -#endif -- cgit v1.2.3-70-g09d2