cpp-common/bt2s: use a `using` declaration
[babeltrace.git] / src / cpp-common / bt2s / string-view.hpp
CommitLineData
45f637cc
PP
1/*
2 * Copyright (c) 2023 Philippe Proulx <pproulx@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#ifndef BABELTRACE_CPP_COMMON_BT2S_STRING_VIEW_HPP
8#define BABELTRACE_CPP_COMMON_BT2S_STRING_VIEW_HPP
9
10#include "cpp-common/vendor/string_view-standalone/string_view.hpp"
11
12namespace bt2s {
13
fa447211
PP
14using bpstd::basic_string_view;
15using bpstd::string_view;
16using bpstd::wstring_view;
17using bpstd::u16string_view;
18using bpstd::u32string_view;
45f637cc
PP
19
20} /* namespace bt2s */
21
22#endif /* BABELTRACE_CPP_COMMON_BT2S_STRING_VIEW_HPP */
This page took 0.024897 seconds and 4 git commands to generate.