File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,10 @@ class compilet : public messaget
27
27
{
28
28
public:
29
29
// compilation results
30
- namespacet ns;
31
30
goto_modelt goto_model;
32
31
33
32
// configuration
34
33
bool echo_file_name;
35
- std::string working_directory;
36
- std::string override_language;
37
34
bool validate_goto_model = false ;
38
35
39
36
enum { PREPROCESS_ONLY, // gcc -E
@@ -48,8 +45,6 @@ class compilet : public messaget
48
45
std::list<std::string> source_files;
49
46
std::list<std::string> object_files;
50
47
std::list<std::string> libraries;
51
- std::list<std::string> tmp_dirs;
52
- std::list<irep_idt> seen_modes;
53
48
54
49
std::string object_file_extension;
55
50
std::string output_file_executable;
@@ -93,6 +88,14 @@ class compilet : public messaget
93
88
}
94
89
95
90
protected:
91
+ namespacet ns;
92
+
93
+ std::string working_directory;
94
+ std::string override_language;
95
+
96
+ std::list<std::string> tmp_dirs;
97
+ std::list<irep_idt> seen_modes;
98
+
96
99
cmdlinet &cmdline;
97
100
bool warning_is_fatal;
98
101
You can’t perform that action at this time.
0 commit comments