fix clang warning for signed unsigned comparison
This commit is contained in:
parent
1d5d73b75a
commit
d20128530a
1 changed files with 1 additions and 1 deletions
|
@ -1126,7 +1126,7 @@ bool preprocessor_data::get_chunk()
|
|||
++linenum_;
|
||||
}
|
||||
|
||||
if(c == INLINED_PREPROCESS_DIRECTIVE_CHAR) {
|
||||
if(c == static_cast<char>(INLINED_PREPROCESS_DIRECTIVE_CHAR)) {
|
||||
std::string buffer(1, c);
|
||||
|
||||
while(true) {
|
||||
|
|
Loading…
Add table
Reference in a new issue