diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/version.cc.in | 2 | ||||
| -rw-r--r-- | src/core/version.hh | 2 |
2 files changed, 2 insertions, 2 deletions
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 */ |
