diff --git a/include/flatbuffers/util.h b/include/flatbuffers/util.h index b47d179c6..b3aa6e9c7 100644 --- a/include/flatbuffers/util.h +++ b/include/flatbuffers/util.h @@ -210,7 +210,7 @@ inline void EnsureDirExists(const std::string &filepath) { auto parent = StripFileName(filepath); if (parent.length()) EnsureDirExists(parent); #ifdef _WIN32 - _mkdir(filepath.c_str()); + (void)_mkdir(filepath.c_str()); #else mkdir(filepath.c_str(), S_IRWXU|S_IRGRP|S_IXGRP); #endif diff --git a/src/idl_parser.cpp b/src/idl_parser.cpp index 31af4738c..e4013e8d4 100644 --- a/src/idl_parser.cpp +++ b/src/idl_parser.cpp @@ -191,7 +191,7 @@ std::string Parser::TokenToStringId(int t) { // Parses exactly nibbles worth of hex digits into a number, or error. CheckedError Parser::ParseHexNum(int nibbles, int64_t *val) { for (int i = 0; i < nibbles; i++) - if (!isxdigit(cursor_[i])) + if (!isxdigit(static_cast(cursor_[i]))) return Error("escape code must be followed by " + NumToString(nibbles) + " hex digits"); std::string target(cursor_, cursor_ + nibbles); @@ -214,7 +214,7 @@ CheckedError Parser::Next() { case '{': case '}': case '(': case ')': case '[': case ']': case ',': case ':': case ';': case '=': return NoError(); case '.': - if(!isdigit(*cursor_)) return NoError(); + if(!isdigit(static_cast(*cursor_))) return NoError(); return Error("floating point constant can\'t start with \".\""); case '\"': case '\'':