]> granicus.if.org Git - clang/commitdiff
Removed couple of FIXME comments from test case.
authorFariborz Jahanian <fjahanian@apple.com>
Mon, 14 Sep 2009 17:32:50 +0000 (17:32 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Mon, 14 Sep 2009 17:32:50 +0000 (17:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81774 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/conversion-delete-expr.cpp

index 0a591a285bed072c54f9f2a6f734acb32c83e595..661ce4483e9d6955b388b8a9f3901b0abfcd31e8 100644 (file)
@@ -74,7 +74,7 @@ struct X1 {
    template<typename T> operator T*() const; // converts to any pointer!
 };
 
-void f5(X1 x) { delete x; } // FIXME. May have to issue error here too.
+void f5(X1 x) { delete x; }  // OK. In selecting a conversion to pointer function, template convesions are skipped.
 
 // Test7
 struct Base {
@@ -102,7 +102,7 @@ struct DD : BB {
 
 void foo7 (DD d)
 {
-       // FIXME. We select DD::operator int *() const; g++ issues ambiguity error. Investigate.
+        // OK. In selecting a conversion to pointer function, template convesions are skipped.
        delete d;
 }