From 437cb94dda821a7c6ae0c4eae16dd96e181bbcdf Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 7 Jun 2024 18:32:21 -0500 Subject: [PATCH] fix --- .gitignore | 1 + repertory/librepertory/src/common.cpp | 35 --------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 repertory/librepertory/src/common.cpp diff --git a/.gitignore b/.gitignore index 14285e9b..80818c1c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ cspell.json support/Dockerfile dist/ deps/ +repertory/librepertory/src/common.cpp diff --git a/repertory/librepertory/src/common.cpp b/repertory/librepertory/src/common.cpp deleted file mode 100644 index 5236d70c..00000000 --- a/repertory/librepertory/src/common.cpp +++ /dev/null @@ -1,35 +0,0 @@ -/* - Copyright <2018-2024> - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. -*/ -#include "types/repertory.hpp" -#include "utils/utils.hpp" - -namespace repertory { -auto get_repertory_git_revision() -> const std::string & { - static const std::string git_revision = ""; - return git_revision; -} - -auto get_repertory_version() -> const std::string & { - static const std::string version = "2.0.2-rc"; - return version; -} -} // namespace repertory