1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 19:46:38 +02:00

Version numbers should be unsigned.

This commit is contained in:
Sadie Powell
2025-12-17 14:30:45 +00:00
parent 0f433ebe9c
commit 93e5b871e1
4 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -916,9 +916,9 @@ Anope::string Anope::VersionBuildString()
return s;
}
int Anope::VersionMajor() { return VERSION_MAJOR; }
int Anope::VersionMinor() { return VERSION_MINOR; }
int Anope::VersionPatch() { return VERSION_PATCH; }
unsigned Anope::VersionMajor() { return VERSION_MAJOR; }
unsigned Anope::VersionMinor() { return VERSION_MINOR; }
unsigned Anope::VersionPatch() { return VERSION_PATCH; }
Anope::string Anope::RemoveFormatting(const Anope::string &buf)
{