Skip to content
Snippets Groups Projects
Commit 5c4f9e89 authored by Axel Naumann's avatar Axel Naumann
Browse files

Instead of changing -I to pick up the new location of RAIIObjectsForParser.h...

Instead of changing -I to pick up the new location of RAIIObjectsForParser.h use a forwarding #include in the old file.
Prevents issues with -I order (i.e. finding the file that was emptied by patch before the one in the new location).
parent d34b1d88
No related branches found
No related tags found
No related merge requests found
--- ./tools/clang/lib/Parse/Makefile 2012-03-16 10:46:07.000000000 +0100
+++ ./tools/clang/lib/Parse/Makefile 2013-04-25 14:31:22.431552232 +0200
@@ -13,6 +13,7 @@
CLANG_LEVEL := ../..
LIBRARYNAME := clangParse
-
+# To find moved RAIIObjectsForParser.h
+CPP.Flags += -I$(PROJ_SRC_DIR)/$(CLANG_LEVEL)/include/clang/Sema
include $(CLANG_LEVEL)/Makefile
Index: tools/clang/include/clang/Parse/RAIIObjectsForParser.h
===================================================================
--- tools/clang/include/clang/Parse/RAIIObjectsForParser.h (revision 0)
......@@ -470,7 +459,7 @@ Index: tools/clang/lib/Parse/RAIIObjectsForParser.h
===================================================================
--- tools/clang/lib/Parse/RAIIObjectsForParser.h (revision 179269)
+++ tools/clang/lib/Parse/RAIIObjectsForParser.h (working copy)
@@ -1,434 +0,0 @@
@@ -1,434 +1,2 @@
-//===--- RAIIObjectsForParser.h - RAII helpers for the parser ---*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
......@@ -905,3 +894,5 @@ Index: tools/clang/lib/Parse/RAIIObjectsForParser.h
-} // end namespace clang
-
-#endif
+// forward to new location
+#include "clang/Parse/RAIIObjectsForParser.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment