xref: /freebsd/contrib/llvm-project/libcxx/modules/std/strstream.inc (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
15f757f3fSDimitry Andric// -*- C++ -*-
25f757f3fSDimitry Andric//===----------------------------------------------------------------------===//
35f757f3fSDimitry Andric//
45f757f3fSDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
55f757f3fSDimitry Andric// See https://llvm.org/LICENSE.txt for license information.
65f757f3fSDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
75f757f3fSDimitry Andric//
85f757f3fSDimitry Andric//===----------------------------------------------------------------------===//
95f757f3fSDimitry Andric
105f757f3fSDimitry Andricexport namespace std {
115f757f3fSDimitry Andric#ifndef _LIBCPP_HAS_NO_LOCALIZATION
12*0fca6ea1SDimitry Andric#  if _LIBCPP_STD_VER < 26 || defined(_LIBCPP_ENABLE_CXX26_REMOVED_STRSTREAM)
135f757f3fSDimitry Andric  using std::istrstream;
145f757f3fSDimitry Andric  using std::ostrstream;
155f757f3fSDimitry Andric  using std::strstream;
165f757f3fSDimitry Andric  using std::strstreambuf;
17*0fca6ea1SDimitry Andric#  endif // _LIBCPP_STD_VER < 26 || defined(_LIBCPP_ENABLE_CXX26_REMOVED_STRSTREAM)
185f757f3fSDimitry Andric#endif // _LIBCPP_HAS_NO_LOCALIZATION
195f757f3fSDimitry Andric} // namespace std
20