diff options
| author | Greg Clayton <gclayton@apple.com> | 2012-09-28 21:51:54 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2012-09-28 21:51:54 +0000 |
| commit | 3852b3e1891939f4cc008025494b07894a408707 (patch) | |
| tree | acf58ce189cbf306fa1d7a0200e7ce531d6f1a38 /lldb/source/Utility/StringExtractor.h | |
| parent | 845aa66a8a51d6750a8d461b062026fcc19164d3 (diff) | |
| download | bcm5719-llvm-3852b3e1891939f4cc008025494b07894a408707.tar.gz bcm5719-llvm-3852b3e1891939f4cc008025494b07894a408707.zip | |
<rdar://problem/12398225>
Improve performance of StringExtractor::GetHexS8().
llvm-svn: 164852
Diffstat (limited to 'lldb/source/Utility/StringExtractor.h')
| -rw-r--r-- | lldb/source/Utility/StringExtractor.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/source/Utility/StringExtractor.h b/lldb/source/Utility/StringExtractor.h index 520119c7d93..73f0117d813 100644 --- a/lldb/source/Utility/StringExtractor.h +++ b/lldb/source/Utility/StringExtractor.h @@ -89,9 +89,6 @@ public: char GetChar (char fail_value = '\0'); - int8_t - GetHexS8 (int8_t fail_value = 0); - uint8_t GetHexU8 (uint8_t fail_value = 0, bool set_eof_on_fail = true); @@ -133,9 +130,6 @@ protected: // will march along as things get extracted. If set // to UINT32_MAX the end of the packet data was // reached when decoding information - - uint32_t - GetNumHexASCIICharsAtFilePos (uint32_t max = UINT32_MAX) const; }; #endif // utility_StringExtractor_h_ |

