Use intptr_t.

llvm-svn: 70076
This commit is contained in:
Bill Wendling 2009-04-25 21:06:53 +00:00
parent 5287b4e8ec
commit 13535ceb10
1 changed files with 1 additions and 1 deletions

View File

@ -845,7 +845,7 @@ public:
/// size() - The length of this string.
///
size_t size() const { return StrEnd - StrBegin; }
intptr_t size() const { return StrEnd - StrBegin; }
/// begin() - Pointer to the first byte of the string.
///