diff options
author | Zachary Turner <zturner@google.com> | 2015-03-18 21:31:45 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-03-18 21:31:45 +0000 |
commit | 5023257f2359d16357721635a22db8ecd7213343 (patch) | |
tree | 00a0614090a6113db25735521f32f6361a452d7f /lldb/source/Core/Section.cpp | |
parent | eba5227ccd4ab2e31e62fe1cdaa811b2da665e90 (diff) | |
download | bcm5719-llvm-5023257f2359d16357721635a22db8ecd7213343.tar.gz bcm5719-llvm-5023257f2359d16357721635a22db8ecd7213343.zip |
Move some functions from source/lldb.cpp to Utility.
Specifically, there were some functions for converting enums
to strings and a function for matching a string using a specific
matching algorithm. This moves those functions to more appropriate
headers in lldb/Utility and updates references to include the
new headers.
llvm-svn: 232673
Diffstat (limited to 'lldb/source/Core/Section.cpp')
-rw-r--r-- | lldb/source/Core/Section.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp index ea33a62b775..9a3f220beb4 100644 --- a/lldb/source/Core/Section.cpp +++ b/lldb/source/Core/Section.cpp @@ -12,6 +12,7 @@ #include "lldb/Symbol/ObjectFile.h" #include "lldb/Target/SectionLoadList.h" #include "lldb/Target/Target.h" +#include "lldb/Utility/ConvertEnum.h" #include <limits> |