From: Dale Johannesen Date: Sat, 25 Aug 2007 00:40:41 +0000 (+0000) Subject: Comment out declaration of operator== (undefined). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=21dcae17f580678c452eac73e01424c924d2f994;p=oota-llvm.git Comment out declaration of operator== (undefined). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41383 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h index 7b95392e7ff..165e290373d 100644 --- a/include/llvm/ADT/APFloat.h +++ b/include/llvm/ADT/APFloat.h @@ -190,7 +190,7 @@ namespace llvm { /* The definition of equality is not straightforward for floating point, so we won't use operator==. Use one of the following, or write whatever it is you really mean. */ - bool operator==(const APFloat &) const; // DO NOT IMPLEMENT + // bool operator==(const APFloat &) const; // DO NOT IMPLEMENT /* IEEE comparison with another floating point number (QNaNs compare unordered, 0==-0). */