summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/APSInt.h
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
commit028760fd88081964ace51e4205e28ff52fc1f47a (patch)
tree78be3b07d48e3b0fa89f656d981d43073441ef29 /include/llvm/ADT/APSInt.h
parent9132a2b81842b0e2b77703fab3e6fe7467f859bb (diff)
downloadllvm-028760fd88081964ace51e4205e28ff52fc1f47a.tar.gz
llvm-028760fd88081964ace51e4205e28ff52fc1f47a.tar.bz2
llvm-028760fd88081964ace51e4205e28ff52fc1f47a.tar.xz
Avoid hiding issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41310 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/APSInt.h')
-rw-r--r--include/llvm/ADT/APSInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APSInt.h b/include/llvm/ADT/APSInt.h
index 91dd709000..b73ee76c08 100644
--- a/include/llvm/ADT/APSInt.h
+++ b/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());
}