Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D2342
13 lines
206 B
C++
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
|