diff options
author | Christian <c@ethdev.com> | 2015-02-09 07:49:35 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-02-09 07:49:35 +0800 |
commit | 106cda74f8f017d1a463a4bbb8f1309d7647a5d1 (patch) | |
tree | ee7343ad6e9d4158252d57153313ce10781f1e68 /Types.cpp | |
parent | a66db516fb1025b406c8fcdb694b7fb760f84695 (diff) | |
download | dexon-solidity-106cda74f8f017d1a463a4bbb8f1309d7647a5d1.tar.gz dexon-solidity-106cda74f8f017d1a463a4bbb8f1309d7647a5d1.tar.zst dexon-solidity-106cda74f8f017d1a463a4bbb8f1309d7647a5d1.zip |
Small cleanup.
Diffstat (limited to 'Types.cpp')
-rw-r--r-- | Types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -360,7 +360,7 @@ u256 IntegerConstantType::literalValue(Literal const*) const TypePointer IntegerConstantType::getRealType() const { auto intType = getIntegerType(); - solAssert(!!intType, std::string("getRealType called with invalid integer constant") + toString()); + solAssert(!!intType, "getRealType called with invalid integer constant " + toString()); return intType; } |