OSDN Git Service

Diabolical hack to make a test compatible with clang. (Thanks to Dale!) Radar 8246180.
authorStuart Hastings <stuart@apple.com>
Mon, 2 Aug 2010 23:29:03 +0000 (23:29 +0000)
committerStuart Hastings <stuart@apple.com>
Mon, 2 Aug 2010 23:29:03 +0000 (23:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110081 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendObjC++/2010-08-02-NonPODObjectValue.mm

index 2162863..298844e 100644 (file)
@@ -18,6 +18,9 @@ public:
    TWindowHistoryEntry* entry;
    TFENodeVector newPath;
    // CHECK: setting a C++ non-POD object value is not implemented
+#ifdef __clang__
+#error setting a C++ non-POD object value is not implemented
+#endif
    entry.targetPath = newPath;
    [entry setTargetPath:newPath];
 }