remove trailing spaces

This commit is contained in:
Bernd Amend 2021-05-22 15:51:01 +02:00
parent 32723fcbc0
commit 39f7aa0900
2 changed files with 31 additions and 32 deletions

View File

@ -811,7 +811,6 @@ namespace chaiscript
} else if (!unsigned_ && !longlong_ && u >= std::numeric_limits<long>::min() && u <= std::numeric_limits<long>::max()) {
return const_var(static_cast<long>(u));
} else if ((unsigned_ || base != 10) && !longlong_
&& u >= std::numeric_limits<unsigned long>::min()
&& u <= std::numeric_limits<unsigned long>::max()) {
return const_var(static_cast<unsigned long>(u));