Skip to content

Commit 6e04213

Browse files
author
thk123
committed
Reformatting the structs to aid readability
1 parent 0cfacb8 commit 6e04213

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

src/ansi-c/expr2c.cpp

+20-11
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,27 @@ Author: Daniel Kroening, [email protected]
3030
#include "c_qualifiers.h"
3131
#include "expr2c_class.h"
3232

33-
expr2c_configurationt expr2c_configurationt::default_configuration{true,
34-
true,
35-
true,
36-
"TRUE",
37-
"FALSE"};
38-
39-
expr2c_configurationt expr2c_configurationt::clean_configuration{false,
40-
false,
41-
false,
42-
"1",
43-
"0"};
33+
// clang-format off
4434

35+
expr2c_configurationt expr2c_configurationt::default_configuration
36+
{
37+
true,
38+
true,
39+
true,
40+
"TRUE",
41+
"FALSE"
42+
};
43+
44+
expr2c_configurationt expr2c_configurationt::clean_configuration
45+
{
46+
false,
47+
false,
48+
false,
49+
"1",
50+
"0"
51+
};
52+
53+
// clang-format on
4554
/*
4655
4756
Precedences are as follows. Higher values mean higher precedence.

0 commit comments

Comments
 (0)