You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,13 @@ This file tests all the library stuff. It is a valuable code container with so m
19
19
20
20
The code has been developed using VS2022 IDE. As such, unitary tests have been coded using Microsoft Visual Studio Cpp Unit Test Framework. The related VS project is provided with this library.
21
21
22
-
Notice: no clang, gcc or msvc specific declarations or goodies have been use to code library**cpp-strings**. It should then be compilable with any of these compilers. To be able to use it with your project, just ensure that the c++ standard used with you favorite compiler is**c++20**:options`-std=c++20` or
22
+
Notice: no clang, gcc or msvc specific declarations or goodies have been use to code library**cpp-strings**. It should then be compilable with any of these compilers. To be able to use it with your project, just ensure that the c++ standard used with you favorite compiler is**c++20**:
23
23
* options`-std=c++20` or`-std=c++latest` for clang and gcc (v. 10 and above),
24
24
or option`-std=c++2a` for clang and gcc (v. 9 and earlier);
25
-
* options`/std=c++20` or`/std=c++latest` for Visual Studio 2019 andabove
25
+
* options`/std=c++20` or`/std=c++latest` for Visual Studio 2019 andlater.
26
26
27
-
If you want to run the unitary tests, well, use Visual Studio 2022. The Community free version will truly be fine. The vcproject associated with the unit tests is already configured to use the option flag`/std:c++latest` since the implemented code uses a very few but very useful c++23 goodies.
27
+
If you want to run the unitary tests, well, use the last version of Visual Studio (i.e. VS 2022, by July 2025). The Community free version will truly be fine.
28
+
The vcproject associated with the unit tests in**cpp-strings** is already configured to use the option flag`/std:c++latest` since the implemented code uses a very few but very useful c++23 goodies.