refactor: Remove unused function

This commit is contained in:
Lars Toenning
2024-06-10 20:38:23 +02:00
parent b2ae4e5681
commit e755abed3c
2 changed files with 0 additions and 8 deletions

View File

@@ -62,9 +62,6 @@ namespace BlackConfig
//! Local build for developers
static bool isLocalDeveloperDebugBuild();
//! Vatsim enabled version?
static constexpr bool isVatsimVersion(); // defined in buildconfig_gen.inc.in
//! Running on Windows NT platform?
static constexpr bool isRunningOnWindowsNtPlatform();

View File

@@ -58,11 +58,6 @@ constexpr bool BlackConfig::CBuildConfig::isCompiledWithGui()
return SWIFTCONFIG_${SWIFT_BUILD_BLACKGUI};
}
constexpr bool BlackConfig::CBuildConfig::isVatsimVersion()
{
return SWIFTCONFIG_${SWIFT_VATSIM_SUPPORT};
}
constexpr int BlackConfig::CBuildConfig::versionMajor() { return ${SWIFT_VERSION_MAJOR}; }
constexpr int BlackConfig::CBuildConfig::versionMinor() { return ${SWIFT_VERSION_MINOR}; }