Code cleanup

pull/103/head
Tatsuhiro Tsujikawa 2013-06-30 22:59:07 +09:00
parent 098f1571be
commit 9e35750bb8
1 changed files with 2 additions and 2 deletions

View File

@ -72,13 +72,13 @@ public:
void incChokeUnchokeCount() {
if(chokeUnchokeCount < INT_MAX) {
chokeUnchokeCount++;
++chokeUnchokeCount;
}
}
void incKeepAliveCount() {
if(keepAliveCount < INT_MAX) {
keepAliveCount++;
++keepAliveCount;
}
}