aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-30 18:18:54 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-30 18:18:54 +0000
commitbd17a295c1fe7ac5669af033086209254a0887a3 (patch)
treeeb252cfea583360e5512f5257be1e68c83eab4af /include
parent3e4b22d9836f66ba72dd105567a77be05030f747 (diff)
downloadexternal_llvm-bd17a295c1fe7ac5669af033086209254a0887a3.zip
external_llvm-bd17a295c1fe7ac5669af033086209254a0887a3.tar.gz
external_llvm-bd17a295c1fe7ac5669af033086209254a0887a3.tar.bz2
Remove itohexstr, which only had one user.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77613 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/StringExtras.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h
index e40e409..3d1993c 100644
--- a/include/llvm/ADT/StringExtras.h
+++ b/include/llvm/ADT/StringExtras.h
@@ -103,10 +103,6 @@ static inline std::string itostr(int64_t X) {
return utostr(static_cast<uint64_t>(X));
}
-static inline std::string itohexstr(int64_t X) {
- return utohexstr(static_cast<uint64_t>(X));
-}
-
static inline std::string ftostr(double V) {
char Buffer[200];
sprintf(Buffer, "%20.6e", V);