aboutsummaryrefslogtreecommitdiffstats
path: root/Types.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-09 07:49:35 +0800
committerChristian <c@ethdev.com>2015-02-09 07:49:35 +0800
commit106cda74f8f017d1a463a4bbb8f1309d7647a5d1 (patch)
treeee7343ad6e9d4158252d57153313ce10781f1e68 /Types.cpp
parenta66db516fb1025b406c8fcdb694b7fb760f84695 (diff)
downloaddexon-solidity-106cda74f8f017d1a463a4bbb8f1309d7647a5d1.tar.gz
dexon-solidity-106cda74f8f017d1a463a4bbb8f1309d7647a5d1.tar.zst
dexon-solidity-106cda74f8f017d1a463a4bbb8f1309d7647a5d1.zip
Small cleanup.
Diffstat (limited to 'Types.cpp')
-rw-r--r--Types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Types.cpp b/Types.cpp
index 7a7672c6..f30085ec 100644
--- a/Types.cpp
+++ b/Types.cpp
@@ -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;
}