File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ SRC = anonymous_member.cpp \
28
28
designator.cpp \
29
29
expr2c.cpp \
30
30
gcc_types.cpp \
31
+ gcc_version.cpp \
31
32
literals/convert_character_literal.cpp \
32
33
literals/convert_float_literal.cpp \
33
34
literals/convert_integer_literal.cpp \
File renamed without changes.
Original file line number Diff line number Diff line change @@ -40,13 +40,12 @@ class gcc_versiont
40
40
configt::cppt::cpp_standardt default_cxx_standard;
41
41
42
42
gcc_versiont ()
43
- :
44
- v_major (0 ),
45
- v_minor (0 ),
46
- v_patchlevel (0 ),
47
- flavor (flavort::UNKNOWN),
48
- default_c_standard (configt::ansi_ct::c_standardt::C89),
49
- default_cxx_standard (configt::cppt::cpp_standardt::CPP98)
43
+ : v_major(0 ),
44
+ v_minor (0 ),
45
+ v_patchlevel(0 ),
46
+ flavor(flavort::UNKNOWN),
47
+ default_c_standard(configt::ansi_ct::c_standardt::C89),
48
+ default_cxx_standard(configt::cppt::cpp_standardt::CPP98)
50
49
{
51
50
}
52
51
};
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ SRC = armcc_cmdline.cpp \
10
10
gcc_cmdline.cpp \
11
11
gcc_message_handler.cpp \
12
12
gcc_mode.cpp \
13
- gcc_version.cpp \
14
13
goto_cc_cmdline.cpp \
15
14
goto_cc_languages.cpp \
16
15
goto_cc_main.cpp \
Original file line number Diff line number Diff line change @@ -16,9 +16,10 @@ Date: June 2006
16
16
17
17
#include " compile.h"
18
18
#include " gcc_message_handler.h"
19
- #include " gcc_version.h"
20
19
#include " goto_cc_mode.h"
21
20
21
+ #include < ansi-c/gcc_version.h>
22
+
22
23
#include < set>
23
24
24
25
class gcc_modet :public goto_cc_modet
You can’t perform that action at this time.
0 commit comments