mirror of
https://github.com/boostorg/container.git
synced 2025-07-31 13:07:17 +02:00
Fixes #126 ("flat_set.hpp and set.hpp in pmr have the same header guard")
This commit is contained in:
@ -1320,6 +1320,7 @@ use [*Boost.Container]? There are several reasons for that:
|
||||
[section:release_notes_boost_1_74_00 Boost 1.74 Release]
|
||||
|
||||
* Fixed bugs/issues:
|
||||
* [@https://github.com/boostorg/container/issues/126 GitHub #126: ['"flat_set.hpp and set.hpp in pmr have the same header guard"]].
|
||||
* [@https://github.com/boostorg/container/issues/129 GitHub #129: ['"Alias templates for small_flat_[multi]{set|map} using small_vector as container"]].
|
||||
* [@https://github.com/boostorg/container/pull/135 GitHub #135: ['"Missing BOOST_NORETURN for user defined functions"]].
|
||||
* [@https://github.com/boostorg/container/pull/137 GitHub #137: ['"RandomAccessIterator + 0"]].
|
||||
|
@ -8,8 +8,8 @@
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef BOOST_CONTAINER_PMR_SET_HPP
|
||||
#define BOOST_CONTAINER_PMR_SET_HPP
|
||||
#ifndef BOOST_CONTAINER_PMR_FLAT_SET_HPP
|
||||
#define BOOST_CONTAINER_PMR_FLAT_SET_HPP
|
||||
|
||||
#if defined (_MSC_VER)
|
||||
# pragma once
|
||||
@ -56,4 +56,4 @@ struct flat_multiset_of
|
||||
} //namespace container {
|
||||
} //namespace boost {
|
||||
|
||||
#endif //BOOST_CONTAINER_PMR_SET_HPP
|
||||
#endif //BOOST_CONTAINER_PMR_FLAT_SET_HPP
|
||||
|
Reference in New Issue
Block a user