cpp-common: replace bstd::string_view with nonstd::string_view
[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
a19a1879 10#include "cpp-common/vendor/string-view-lite/string_view.hpp"
45f637cc
PP
11
12namespace bt2s {
13
a19a1879
MJ
14using nonstd::basic_string_view;
15using nonstd::string_view;
16using nonstd::wstring_view;
17using nonstd::u16string_view;
18using nonstd::u32string_view;
45f637cc
PP
19
20} /* namespace bt2s */
21
22#endif /* BABELTRACE_CPP_COMMON_BT2S_STRING_VIEW_HPP */
This page took 0.02655 seconds and 4 git commands to generate.