Fix Cppcheck warnings
This commit is contained in:
parent
2d651b09fc
commit
b66d701599
|
@ -27,6 +27,7 @@
|
||||||
std::string ExprEngine::str(int128_t value)
|
std::string ExprEngine::str(int128_t value)
|
||||||
{
|
{
|
||||||
std::ostringstream ostr;
|
std::ostringstream ostr;
|
||||||
|
#ifdef __GNUC__
|
||||||
if (value == (int)value) {
|
if (value == (int)value) {
|
||||||
ostr << (int) value;
|
ostr << (int) value;
|
||||||
return ostr.str();
|
return ostr.str();
|
||||||
|
@ -41,6 +42,9 @@ std::string ExprEngine::str(int128_t value)
|
||||||
if (high > 0)
|
if (high > 0)
|
||||||
ostr << "h" << std::hex << high << "l";
|
ostr << "h" << std::hex << high << "l";
|
||||||
ostr << std::hex << low;
|
ostr << std::hex << low;
|
||||||
|
#else
|
||||||
|
ostr << value;
|
||||||
|
#endif
|
||||||
return ostr.str();
|
return ostr.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -135,7 +135,7 @@ namespace ExprEngine {
|
||||||
|
|
||||||
class StructValue: public Value {
|
class StructValue: public Value {
|
||||||
public:
|
public:
|
||||||
StructValue(const std::string &name) : Value(name) {}
|
explicit StructValue(const std::string &name) : Value(name) {}
|
||||||
ValueType type() const override {
|
ValueType type() const override {
|
||||||
return ValueType::StructValue;
|
return ValueType::StructValue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue