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:
+3
-3
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user