From 05286985402aa26d698543b231b9003b70a89723 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 20 Nov 2024 15:38:24 +0100 Subject: [PATCH] docs: outdated note removed from the "Text Output" chapter --- docs/users_guide/framework_basics/text_output.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/users_guide/framework_basics/text_output.md b/docs/users_guide/framework_basics/text_output.md index 3e15c9ce..28022a0a 100644 --- a/docs/users_guide/framework_basics/text_output.md +++ b/docs/users_guide/framework_basics/text_output.md @@ -237,13 +237,6 @@ static_assert(unit_symbol<{.solidus = unit_symbol_solidus::never, .separator = unit_symbol_separator::half_high_dot}>(kg * m / s2) == "kg⋅m⋅s⁻²"); ``` -!!! note - - `std::string_view` is returned only when C++23 is available. Otherwise, an instance of a - `basic_fixed_string` is being returned. See more in the - [C++ compiler support](../../getting_started/cpp_compiler_support.md#static-constexpr-variables-in-constexpr-functions) - chapter. - #### `unit_symbol_to()` Inserts the generated unit symbol into the output text iterator at runtime.