diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-08-23 05:20:48 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-08-23 05:20:48 +0000 |
| commit | d2d32bae9704efba01ab4c0c1187df80df2657ea (patch) | |
| tree | 8dd14b6c09e738f02352bb728a967b5df64b682a | |
| parent | b0f158cfdf2e95dac5178675aa96bb5085e3dd43 (diff) | |
| download | bcm5719-llvm-d2d32bae9704efba01ab4c0c1187df80df2657ea.tar.gz bcm5719-llvm-d2d32bae9704efba01ab4c0c1187df80df2657ea.zip | |
Avoid hiding issues.
llvm-svn: 41310
| -rw-r--r-- | llvm/include/llvm/ADT/APSInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/APSInt.h b/llvm/include/llvm/ADT/APSInt.h index 91dd709000c..b73ee76c082 100644 --- a/llvm/include/llvm/ADT/APSInt.h +++ b/llvm/include/llvm/ADT/APSInt.h @@ -55,7 +55,7 @@ public: /// 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()); } |

