memgraph/src/utils/pmr/string.hpp
Matej Ferencevic 60367a287e Implement wrappers for STL containers with our allocator
Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2342
2019-09-02 17:04:15 +02:00

13 lines
206 B
C++

#pragma once
#include <string>
#include "utils/memory.hpp"
namespace utils::pmr {
using string =
std::basic_string<char, std::char_traits<char>, utils::Allocator<char>>;
} // namespace utils::pmr