1
0
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:
Naram Qashat
2010-07-30 20:00:52 -04:00
parent ef651b667e
commit afb3782aa3
2 changed files with 15 additions and 31 deletions
+3 -3
View File
@@ -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;
}