From 14e129d3043a2ab4ea6604441a2d076e775432bf Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:26:17 +0500 Subject: Update gitignore and version.hh --- src/core/version.cc.in | 2 +- src/core/version.hh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core') diff --git a/src/core/version.cc.in b/src/core/version.cc.in index 0183ec0..0c255c9 100644 --- a/src/core/version.cc.in +++ b/src/core/version.cc.in @@ -9,4 +9,4 @@ const unsigned long project_version_patch = ${PROJECT_VERSION_PATCH}; const unsigned long project_version_tweak = ${PROJECT_VERSION_TWEAK}; // clang-format on -const std::string project_version_string = "${PROJECT_VERSION}"; +const char* project_version_string = "${PROJECT_VERSION}"; diff --git a/src/core/version.hh b/src/core/version.hh index 2061c31..fc4d48a 100644 --- a/src/core/version.hh +++ b/src/core/version.hh @@ -7,6 +7,6 @@ extern const unsigned long project_version_minor; extern const unsigned long project_version_patch; extern const unsigned long project_version_tweak; -extern const std::string project_version_string; +extern const char* project_version_string; #endif /* CORE_VERSION_HH */ -- cgit