summaryrefslogtreecommitdiff
path: root/src/logger.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-11-11 19:21:51 +0300
committerAndrei Karas <akaras@inbox.ru>2016-11-11 19:21:51 +0300
commit4b1002f7c5fad28e39581161c1bf03dbdd1b7b54 (patch)
treeb0fdb77d482740dc3fb76a9dacfd845f13607b8f /src/logger.h
parent841f33c1e9477392907a69108bbbe7cd68895b4d (diff)
downloadplus-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.gz
plus-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.bz2
plus-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.xz
plus-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.zip
Fix typo implimented -> implemented.
Diffstat (limited to 'src/logger.h')
-rw-r--r--src/logger.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/logger.h b/src/logger.h
index bfbfe2f68..10b0bcf4a 100644
--- a/src/logger.h
+++ b/src/logger.h
@@ -57,14 +57,14 @@ _SDL_stdinc_h
#define IGNOREDEBUGLOG {}
#endif // ENABLEDEBUGLOG
-#define UNIMPLIMENTEDPACKET \
- logger->unimplimented(msg.getId())
+#define UNIMPLEMENTEDPACKET \
+ logger->unimplemented(msg.getId())
-#define UNIMPLIMENTEDPACKETFIELD(field) \
- logger->unimplimented(msg.getId(), field)
+#define UNIMPLEMENTEDPACKETFIELD(field) \
+ logger->unimplemented(msg.getId(), field)
#define WRONGPACKETSIZE \
- logger->unimplimented(CAST_U32(mId), mLength, mPos)
+ logger->unimplemented(CAST_U32(mId), mLength, mPos)
/**
* The Log Class : Useful to write debug or info messages
@@ -183,8 +183,8 @@ class Logger final
void setDebugLog(const bool n)
{ mDebugLog = n; }
- void setReportUnimplimented(const bool n)
- { mReportUnimplimented = n; }
+ void setReportUnimplemented(const bool n)
+ { mReportUnimplemented = n; }
/**
* Log an error and quit. The error will pop-up on Windows and Mac, and
@@ -206,12 +206,12 @@ class Logger final
#endif // ENABLE_CILKPLUS
;
- void unimplimented(const int id);
+ void unimplemented(const int id);
- void unimplimented(const int id,
+ void unimplemented(const int id,
const int id2);
- void unimplimented(const uint32_t id,
+ void unimplemented(const uint32_t id,
const uint32_t id2,
const uint32_t id3) const;
@@ -222,7 +222,7 @@ class Logger final
volatile bool mThreadLocked;
bool mLogToStandardOut;
bool mDebugLog;
- bool mReportUnimplimented;
+ bool mReportUnimplemented;
};
extern Logger *logger;