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 9e88100 commit 3a5add3Copy full SHA for 3a5add3
gcc-python.c
@@ -35,6 +35,9 @@ int plugin_is_GPL_compatible;
35
36
#if 1
37
/* Ideally we wouldn't have these includes here: */
38
+#if (GCC_VERSION >= 6000)
39
+#include "cp/cp-tree.h" /* for cp_expr */
40
+#endif
41
#include "cp/name-lookup.h" /* for global_namespace */
42
#include "tree.h"
43
#include "function.h"
print-gcc-version.c
@@ -17,7 +17,11 @@
17
<http://www.gnu.org/licenses/>.
18
*/
19
20
+#include "config.h"
21
+#include "system.h"
22
+#include "coretypes.h"
23
#include "plugin.h"
24
+#include <stdio.h>
25
26
int main(int argc, const char *argv[])
27
{
0 commit comments