The formatters for std::shared_ptr, std::weak_ptr, std::list, std::vector and std...
authorEnrico Granata <egranata@apple.com>
Tue, 19 Mar 2013 22:58:48 +0000 (22:58 +0000)
committerEnrico Granata <egranata@apple.com>
Tue, 19 Mar 2013 22:58:48 +0000 (22:58 +0000)
commit92373533a57375f14692f6ef3cb8586ec327ea1b
tree1445a57178cdf0ec53f329134bb1377b206e321b
parent3f4fad92fee80ad64f306ca5cd7f1e875c940d08
The formatters for std::shared_ptr, std::weak_ptr, std::list, std::vector and std::map as provided by libc++ are now written in C++ instead of Python
std::deque is still in Python but is much less commonly used

llvm-svn: 177454
12 files changed:
lldb/include/lldb/DataFormatters/CXXFormatterFunctions.h
lldb/include/lldb/Symbol/ClangASTContext.h
lldb/lldb.xcodeproj/project.pbxproj
lldb/source/DataFormatters/CF.cpp [new file with mode: 0644]
lldb/source/DataFormatters/CXXFormatterFunctions.cpp
lldb/source/DataFormatters/Cocoa.cpp [new file with mode: 0644]
lldb/source/DataFormatters/FormatManager.cpp
lldb/source/DataFormatters/LibCxx.cpp
lldb/source/DataFormatters/LibCxxList.cpp [new file with mode: 0644]
lldb/source/DataFormatters/LibCxxMap.cpp [new file with mode: 0644]
lldb/source/DataFormatters/TypeSynthetic.cpp
lldb/source/Symbol/ClangASTContext.cpp