[llvm-commits] [llvm] r41310 - /llvm/trunk/include/llvm/ADT/APSInt.h

Chris Lattner sabre at nondot.org
Wed Aug 22 22:20:48 PDT 2007


Author: lattner
Date: Thu Aug 23 00:20:48 2007
New Revision: 41310

URL: http://llvm.org/viewvc/llvm-project?rev=41310&view=rev
Log:
Avoid hiding issues.

Modified:
    llvm/trunk/include/llvm/ADT/APSInt.h

Modified: llvm/trunk/include/llvm/ADT/APSInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APSInt.h?rev=41310&r1=41309&r2=41310&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/APSInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APSInt.h Thu Aug 23 00:20:48 2007
@@ -55,7 +55,7 @@
   /// This is used internally to convert an APInt to a string.
   /// @brief Converts an APInt to a std::string
   std::string toString(uint8_t Radix) const {
-    return toString(Radix, isSigned());
+    return APInt::toString(Radix, isSigned());
   }
   
   





More information about the llvm-commits mailing list