Skip to content

Commit 67dcf77

Browse files
ktfdennisklein
authored andcommitted
De-boostify: use std::pmr from C++17
1 parent 24e7a5b commit 67dcf77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fairmq/MemoryResources.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include <boost/container/container_fwd.hpp>
1919
#include <boost/container/flat_map.hpp>
20-
#include <boost/container/pmr/memory_resource.hpp>
20+
#include <memory_resource>
2121
#include <cstring>
2222
#include <fairmq/Message.h>
2323
#include <stdexcept>
@@ -27,7 +27,7 @@ namespace fair::mq {
2727

2828
class TransportFactory;
2929
using byte = unsigned char;
30-
namespace pmr = boost::container::pmr;
30+
namespace pmr = std::pmr;
3131

3232
/// All FairMQ related memory resources need to inherit from this interface
3333
/// class for the

0 commit comments

Comments
 (0)