We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c004f commit bca1663Copy full SHA for bca1663
src/ansi-c/literals/convert_float_literal.cpp
@@ -32,10 +32,9 @@ exprt convert_float_literal(const std::string &src)
32
parse_floatt parsed_float(src);
33
34
// In ANSI-C, float literals are double by default,
35
- // unless marked with 'f'.
36
- // All of these can be complex as well.
37
- // This can be overridden with
38
- // config.ansi_c.single_precision_constant.
+ // unless marked with 'f' (this can be overridden with
+ // config.ansi_c.single_precision_constant).
+ // Furthermore, floating-point literals can be complex.
39
40
floatbv_typet type;
41
0 commit comments