ADT: correct typo in comment

llvm-svn: 211196
This commit is contained in:
Ed Maste 2014-06-18 18:08:55 +00:00
parent 285b6b6585
commit f054c7ed68
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public:
APInt::toString(Str, Radix, isSigned());
}
/// toString - Converts an APInt to a std::string. This is an inefficient
/// method, your should prefer passing in a SmallString instead.
/// method; you should prefer passing in a SmallString instead.
std::string toString(unsigned Radix) const {
return APInt::toString(Radix, isSigned());
}