diff options
author | Enrico Granata <egranata@apple.com> | 2015-09-04 00:33:51 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-09-04 00:33:51 +0000 |
commit | 419d79189f56a4d819f7e958a7ea695efaef9875 (patch) | |
tree | dadbea9cf2f24f50366ca359b9b935f4b0014008 /lldb/source/DataFormatters/LibCxxInitializerList.cpp | |
parent | f9cdea9d7466617ee772e9d9b19707e391763870 (diff) | |
download | bcm5719-llvm-419d79189f56a4d819f7e958a7ea695efaef9875.tar.gz bcm5719-llvm-419d79189f56a4d819f7e958a7ea695efaef9875.zip |
Nuke CXXFormatterFunctions.cpp - split the contents of it across different files, so that things are better organized along the C++/ObjC line
This is preparatory work for moving these formatters into language categories
llvm-svn: 246827
Diffstat (limited to 'lldb/source/DataFormatters/LibCxxInitializerList.cpp')
-rw-r--r-- | lldb/source/DataFormatters/LibCxxInitializerList.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/DataFormatters/LibCxxInitializerList.cpp b/lldb/source/DataFormatters/LibCxxInitializerList.cpp index 652771e2466..87f8a3d0bdd 100644 --- a/lldb/source/DataFormatters/LibCxxInitializerList.cpp +++ b/lldb/source/DataFormatters/LibCxxInitializerList.cpp @@ -7,10 +7,11 @@ // //===----------------------------------------------------------------------===// -#include "lldb/DataFormatters/CXXFormatterFunctions.h" +#include "lldb/DataFormatters/LibCxx.h" #include "lldb/Core/ConstString.h" #include "lldb/Core/ValueObject.h" +#include "lldb/DataFormatters/FormattersHelpers.h" using namespace lldb; using namespace lldb_private; |