forked from OSchip/llvm-project
Ignore depricated warnings from <ext/hash_map> and <ext/hash_set>
llvm-svn: 272632
This commit is contained in:
parent
81a88beec4
commit
10e3d1764a
|
@ -7,6 +7,11 @@
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// Prevent emission of the deprecated warning.
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang diagnostic ignored "-W#warnings"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <ext/hash_map>
|
#include <ext/hash_map>
|
||||||
|
|
||||||
namespace __gnu_cxx {
|
namespace __gnu_cxx {
|
||||||
|
|
|
@ -7,6 +7,11 @@
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// Prevent emission of the deprecated warning.
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang diagnostic ignored "-W#warnings"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <ext/hash_set>
|
#include <ext/hash_set>
|
||||||
|
|
||||||
namespace __gnu_cxx {
|
namespace __gnu_cxx {
|
||||||
|
|
Loading…
Reference in New Issue