We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cfacb8 commit 6e04213Copy full SHA for 6e04213
src/ansi-c/expr2c.cpp
@@ -30,18 +30,27 @@ Author: Daniel Kroening, [email protected]
30
#include "c_qualifiers.h"
31
#include "expr2c_class.h"
32
33
-expr2c_configurationt expr2c_configurationt::default_configuration{true,
34
- true,
35
36
- "TRUE",
37
- "FALSE"};
38
-
39
-expr2c_configurationt expr2c_configurationt::clean_configuration{false,
40
- false,
41
42
- "1",
43
- "0"};
+// clang-format off
44
+expr2c_configurationt expr2c_configurationt::default_configuration
+{
+ true,
+ "TRUE",
+ "FALSE"
+};
+
+expr2c_configurationt expr2c_configurationt::clean_configuration
45
46
+ false,
47
48
49
+ "1",
50
+ "0"
51
52
53
+// clang-format on
54
/*
55
56
Precedences are as follows. Higher values mean higher precedence.
0 commit comments