Fix typos in #4086 and #4087.

This commit is contained in:
Romain Geissler
2023-07-18 07:30:29 +00:00
parent 346ec77dbd
commit 5fb67c452a
2 changed files with 2 additions and 2 deletions

View File

@@ -361,7 +361,7 @@ protected:
if (from < 0)
throw RangeException("Value too small.");
checkUpperLimit<std::make_unsigned<F>,T>(from);
checkUpperLimit<std::make_unsigned_t<F>,T>(from);
to = static_cast<T>(from);
}