Skip to content

Commit 883b289

Browse files
committed
Make style consistent
1 parent 6c87e27 commit 883b289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/addition.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ int main()
2222
// We now add 0.1 1000 times which should result exactly in 100
2323
// What we actually find is that the decimal32_t value does result in exactly 100
2424
// With type float the result is not 100 due to inexact representation
25-
for (int i {0}; i < 1000; ++i)
25+
for (int i {}; i < 1000; ++i)
2626
{
2727
decimal_value += decimal_one_tenth; // Decimal types support compound arithmetic as expected
2828
float_value += float_one_tenth;

0 commit comments

Comments
 (0)