]> granicus.if.org Git - clang/commitdiff
Note why this doesn't yet work.
authorMike Stump <mrs@apple.com>
Tue, 17 Nov 2009 00:30:31 +0000 (00:30 +0000)
committerMike Stump <mrs@apple.com>
Tue, 17 Nov 2009 00:30:31 +0000 (00:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89012 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/dyncast.cpp

index ffde1375233fc832bfcfdeecbf3fd62c695fe076..4719f80a5b41d01bfa9f5cb9714a41f3009a746f 100644 (file)
@@ -29,7 +29,8 @@ void test1() {
   S(bp == 0, 3);
   ap = dynamic_cast<test1_A*>(&test1_d);
   S(ap != 0, 4);
-  // FIXME: Doesn't work yet, gcc fails this at comepile time
+  // FIXME: Doesn't work yet, gcc fails this at compile time.  We'd need access
+  // control for this to work.
   // bp = dynamic_cast<test1_B*>(&test1_d);
   // S(bp == 0, 5);
   {