refactor: basic_symbol_text renamed to symbol_text

This commit is contained in:
Mateusz Pusz
2024-03-18 23:12:39 +09:00
parent 7a0baae1ee
commit fb97c2ea5a
17 changed files with 110 additions and 113 deletions

View File

@@ -101,11 +101,11 @@ and units of derived quantities.
!!! tip
For older compilers, it might be required to specify a `basic_symbol_text` class explicitly
For older compilers, it might be required to specify a `symbol_text` class explicitly
template name to initialize it with two symbols:
```cpp
inline constexpr struct ohm : named_unit<basic_symbol_text{u8"Ω", "ohm"}, volt / ampere> {} ohm;
inline constexpr struct ohm : named_unit<symbol_text{u8"Ω", "ohm"}, volt / ampere> {} ohm;
```