diff options
author | Howard Hinnant <hhinnant@apple.com> | 2013-08-02 17:50:49 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2013-08-02 17:50:49 +0000 |
commit | 2f51de568f80d1b7992ddb4a43b7328c7fb965d6 (patch) | |
tree | 5671e4200ab2e61b3d652c3722410513f1d1e1bc /libcxx/include/__debug | |
parent | 0178a25fc5155b2a01791eb11b48d1b8286f8a83 (diff) | |
download | bcm5719-llvm-2f51de568f80d1b7992ddb4a43b7328c7fb965d6.tar.gz bcm5719-llvm-2f51de568f80d1b7992ddb4a43b7328c7fb965d6.zip |
debug mode for unordered_map. Also picked up a missing check and test in unordered_multimap. This wraps up debug mode for the unordered containers.
llvm-svn: 187659
Diffstat (limited to 'libcxx/include/__debug')
-rw-r--r-- | libcxx/include/__debug | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/include/__debug b/libcxx/include/__debug index 4c920a7f4ae..bac580cfa80 100644 --- a/libcxx/include/__debug +++ b/libcxx/include/__debug @@ -24,6 +24,10 @@ #if _LIBCPP_DEBUG_LEVEL >= 2 +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + _LIBCPP_BEGIN_NAMESPACE_STD struct _LIBCPP_TYPE_VIS __c_node; |