diff options
author | kleines Filmröllchen <filmroellchen@serenityos.org> | 2022-08-30 12:49:08 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-14 13:45:33 +0200 |
commit | cb0b82ec464f28fae134403fc268961c02f27e1c (patch) | |
tree | 9d02c98e6cb6a3764eccced70e271bacb88fe61d /Userland/Libraries/LibCore/Version.h | |
parent | 38bb189772d90e39ed7d85a0cf89dbc3a532c34e (diff) | |
download | serenity-cb0b82ec464f28fae134403fc268961c02f27e1c.zip |
Userland+LibCore: Remove legacy SERENITY_VERSION from Core::Version
This was being used as a default version argument in a couple of APIs,
so those need to change signature and the caller always needs to provide
a version.
Diffstat (limited to 'Userland/Libraries/LibCore/Version.h')
-rw-r--r-- | Userland/Libraries/LibCore/Version.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCore/Version.h b/Userland/Libraries/LibCore/Version.h index 1ca7a18d1d..1cd915eb65 100644 --- a/Userland/Libraries/LibCore/Version.h +++ b/Userland/Libraries/LibCore/Version.h @@ -10,8 +10,6 @@ namespace Core::Version { -constexpr StringView SERENITY_VERSION = "Version 1.0"sv; - String read_long_version_string(); } |