Merge pull request #353 from Dmitry-Me/unselessConst

Useless const
This commit is contained in:
Lee Thomason 2015-06-19 16:55:19 -07:00
commit aebaeea687
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ public:
return false; return false;
} }
inline static bool IsUTF8Continuation( const char p ) { inline static bool IsUTF8Continuation( char p ) {
return ( p & 0x80 ) != 0; return ( p & 0x80 ) != 0;
} }