mirror of
https://github.com/anope/anope.git
synced 2026-06-25 21:26:38 +02:00
Some more slight cleanups, this time in modes.cpp and module.cpp.
This commit is contained in:
+3
-3
@@ -155,15 +155,15 @@ Version::~Version()
|
||||
|
||||
unsigned Version::GetMajor() const
|
||||
{
|
||||
return Major;
|
||||
return this->Major;
|
||||
}
|
||||
|
||||
unsigned Version::GetMinor() const
|
||||
{
|
||||
return Minor;
|
||||
return this->Minor;
|
||||
}
|
||||
|
||||
unsigned Version::GetBuild() const
|
||||
{
|
||||
return Build;
|
||||
return this->Build;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user