Remove extra semicolon

This commit is contained in:
Behdad Esfahbod 2011-06-14 14:35:44 -04:00
parent 8142680802
commit 970e092dc2
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ static inline unsigned char TOLOWER (unsigned char c)
/* Makes class uncopyable. Use in private: section. */
#define NO_COPY(T) \
T (const T &o); \
T &operator = (const T &o);
T &operator = (const T &o)
/* Debug */