MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / isUtf32

Function isUtf32

lib/token.h:808–811  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

806 }
807
808 bool isUtf32() const {
809 return (((mTokType == eString) && isPrefixStringCharLiteral(mStr, '"', "U")) ||
810 ((mTokType == eChar) && isPrefixStringCharLiteral(mStr, '\'', "U")));
811 }
812
813 bool isCChar() const {
814 return (((mTokType == eString) && isPrefixStringCharLiteral(mStr, '"', "")) ||

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected