cli:platforms: Added missing sizeof Boolean variable handling when platform file is loaded from XML.
This commit is contained in:
parent
1906067aac
commit
b86b7175cb
|
@ -197,6 +197,8 @@ bool cppcheck::Platform::platformFile(const char exename[], const std::string &f
|
||||||
for (const tinyxml2::XMLElement *sz = node->FirstChildElement(); sz; sz = sz->NextSiblingElement()) {
|
for (const tinyxml2::XMLElement *sz = node->FirstChildElement(); sz; sz = sz->NextSiblingElement()) {
|
||||||
if (std::strcmp(sz->Name(), "short") == 0)
|
if (std::strcmp(sz->Name(), "short") == 0)
|
||||||
sizeof_short = std::atoi(sz->GetText());
|
sizeof_short = std::atoi(sz->GetText());
|
||||||
|
else if (std::strcmp(sz->Name(), "bool") == 0)
|
||||||
|
sizeof_bool = std::atoi(sz->GetText());
|
||||||
else if (std::strcmp(sz->Name(), "int") == 0)
|
else if (std::strcmp(sz->Name(), "int") == 0)
|
||||||
sizeof_int = std::atoi(sz->GetText());
|
sizeof_int = std::atoi(sz->GetText());
|
||||||
else if (std::strcmp(sz->Name(), "long") == 0)
|
else if (std::strcmp(sz->Name(), "long") == 0)
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<char_bit>8</char_bit>
|
<char_bit>8</char_bit>
|
||||||
<default-sign>unsigned</default-sign>
|
<default-sign>unsigned</default-sign>
|
||||||
<sizeof>
|
<sizeof>
|
||||||
|
<bool>1</bool>
|
||||||
<short>2</short>
|
<short>2</short>
|
||||||
<int>2</int>
|
<int>2</int>
|
||||||
<long>4</long>
|
<long>4</long>
|
||||||
|
|
Loading…
Reference in New Issue