Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fairmq/MemoryResources.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <boost/container/container_fwd.hpp>
#include <boost/container/flat_map.hpp>
#include <boost/container/pmr/memory_resource.hpp>
#include <memory_resource>
#include <cstring>
#include <fairmq/Message.h>
#include <stdexcept>
Expand All @@ -27,7 +27,7 @@ namespace fair::mq {

class TransportFactory;
using byte = unsigned char;
namespace pmr = boost::container::pmr;
namespace pmr = std::pmr;

/// All FairMQ related memory resources need to inherit from this interface
/// class for the
Expand Down