Add raw_ostream::write_hex

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77614 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar
2009-07-30 18:21:23 +00:00
parent bd17a295c1
commit 48018e08f0
2 changed files with 10 additions and 4 deletions

View File

@@ -198,6 +198,9 @@ public:
return *this;
}
/// write_hex - Output \arg N in hexadecimal, without any prefix or padding.
raw_ostream &write_hex(unsigned long long N);
raw_ostream &write(unsigned char C);
raw_ostream &write(const char *Ptr, size_t Size);