[clang-tools-extra] r187282 - Fixed missing checkin.
John Thompson
John.Thompson.JTSoftware at gmail.com
Fri Jul 26 17:54:17 PDT 2013
Author: jtsoftware
Date: Fri Jul 26 19:54:17 2013
New Revision: 187282
URL: http://llvm.org/viewvc/llvm-project?rev=187282&view=rev
Log:
Fixed missing checkin.
Modified:
clang-tools-extra/trunk/test/modularize/Inputs/InconsistentSubHeader.h
Modified: clang-tools-extra/trunk/test/modularize/Inputs/InconsistentSubHeader.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/modularize/Inputs/InconsistentSubHeader.h?rev=187282&r1=187281&r2=187282&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/modularize/Inputs/InconsistentSubHeader.h (original)
+++ clang-tools-extra/trunk/test/modularize/Inputs/InconsistentSubHeader.h Fri Jul 26 19:54:17 2013
@@ -1,11 +1,18 @@
// Set up so TypeInt only defined during InconsistentHeader1.h include.
#ifdef SYMBOL1
#define SYMBOL 1
+#define FUNC_STYLE(a, b) a || b
#endif
#ifdef SYMBOL2
#define SYMBOL 2
+#define FUNC_STYLE(a, b) a &&b
#endif
#if SYMBOL == 1
typedef int TypeInt;
#endif
+
+int var = FUNC_STYLE(1, 0);
+
+#if defined(SYMBOL1)
+#endif
More information about the cfe-commits
mailing list