mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-16 06:54:37 +00:00
5d669e0126
std::unordered_set is now provided through the language standard, hence remove the compatibility code for <unordered_set> and adjust all users accordingly. * include/abg-cxx-compat.h: Drop compatibility for <unordered_set>. * include/abg-comparison.h: migrate abg_compat use to std. * include/abg-interned-str.h: Likewise. * include/abg-suppression.h: Likewise. * src/abg-comparison-priv.h: Likewise. * src/abg-dwarf-reader.cc: Likewise. * tests/test-diff-suppr.cc: Likewise. * tools/abipkgdiff.cc: Likewise. Signed-off-by: Matthias Maennich <maennich@google.com>
16 lines
247 B
C++
16 lines
247 B
C++
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
// -*- Mode: C++ -*-
|
|
//
|
|
// Copyright (C) 2019-2020 Google, Inc.
|
|
|
|
/// @file
|
|
|
|
#ifndef __ABG_CXX_COMPAT_H
|
|
#define __ABG_CXX_COMPAT_H
|
|
|
|
namespace abg_compat {
|
|
|
|
}
|
|
|
|
#endif // __ABG_CXX_COMPAT_H
|