summaryrefslogtreecommitdiff
path: root/cmake/git_version.hpp.in
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-10-05 08:33:39 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-10-05 08:33:39 -0500
commit79620980ea3880f6512a35b9d688a60a02ff8b98 (patch)
treeb4ab3dfc656b88989f3e4234e9c476c295c176ed /cmake/git_version.hpp.in
parentb50980ad70684530d55b7adf20de6047ebf53ba2 (diff)
Formatting changes. Refactoring out detail::CopyMove from Result.
Diffstat (limited to 'cmake/git_version.hpp.in')
-rw-r--r--cmake/git_version.hpp.in15
1 files changed, 0 insertions, 15 deletions
diff --git a/cmake/git_version.hpp.in b/cmake/git_version.hpp.in
deleted file mode 100644
index ede9623..0000000
--- a/cmake/git_version.hpp.in
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef GIT_VERSION_HPP
-#define GIT_VERSION_HPP
-
-#include <cstdint>
-
-namespace fud {
-
-constexpr uint8_t FudVersionMajor = @PROJECT_VERSION_MAJOR@;
-constexpr uint8_t FudVersionMinor = @PROJECT_VERSION_MINOR@;
-constexpr uint8_t FudVersionPatch = @PROJECT_VERSION_PATCH@;
-constexpr const char GitHash[] = "@GIT_HASH@";
-
-} // namespace fud
-
-#endif