Skip to content

Commit 2d25d57

Browse files
Removed redundancy in Convert
1 parent 095a0b1 commit 2d25d57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Convert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ bool sttp::TryParseDecimal(const string& value, decimal_t& result, const decimal
499499
{
500500
try
501501
{
502-
result = decimal_t(value);;
502+
result = decimal_t(value);
503503
return true;
504504
}
505505
catch (...)

0 commit comments

Comments
 (0)