Fix missing trailing dot in error message

This commit is contained in:
Mathias Baumann
2019-03-11 16:15:18 +01:00
parent 189983a1b8
commit e411a502fd
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ BoolResult fitsIntegerType(bigint const& _value, IntegerType const& _type)
return BoolResult{std::string("Cannot implicitly convert signed literal to unsigned type.")};
if (_type.minValue() > _value || _value > _type.maxValue())
return BoolResult{"Literal is too large to fit in " + _type.toString(false)};
return BoolResult{"Literal is too large to fit in " + _type.toString(false) + "."};
return true;
}