summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-23 05:20:48 +0000
committerChris Lattner <sabre@nondot.org>2007-08-23 05:20:48 +0000
commitd2d32bae9704efba01ab4c0c1187df80df2657ea (patch)
tree8dd14b6c09e738f02352bb728a967b5df64b682a
parentb0f158cfdf2e95dac5178675aa96bb5085e3dd43 (diff)
downloadbcm5719-llvm-d2d32bae9704efba01ab4c0c1187df80df2657ea.tar.gz
bcm5719-llvm-d2d32bae9704efba01ab4c0c1187df80df2657ea.zip
Avoid hiding issues.
llvm-svn: 41310
-rw-r--r--llvm/include/llvm/ADT/APSInt.h2
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());
}
OpenPOWER on IntegriCloud