Commit graph

22 commits

Author SHA1 Message Date
root
77870cc80b Fix Wsign-conversion warnings 2024-11-02 20:38:03 -04:00
root
cd191b6c45 Tests: use add_compile_options() to add warnings to tests 2024-11-02 19:42:46 -04:00
nemtrif
972c5501d7 Fix for issue #111
Fixing regression caused by the fix for #78, which leads to utf8::unchecked::utf16to8() chopping off the last character in many cases.
2023-10-28 11:14:26 -04:00
Nemanja Trifunovic
925e7147ec
Merge V4 branch into main (#110)
* Redefined and renamed types for code units.

* Remove -Wsign-conversion from test builds.

* find_invalid and is_valid that work with C-style strings.

* Lifted the C++11 requirement for some functions
 that take std::string as an argument.

* Support for C++20 u8string

Issue #89

* Update test docker image to 4.0.0

* Update Dockerfile to run tests with a recent gcc compiler.

* Make some internal helper functions non-template

* Add append16 function

Support for appending codepoints to existing utf16 encoded strings.

See #91

* next16

* Tests and documentation for next16

* Rewrite CMakeLists

Drop the existing CMake structure and write the new one from scratch. The root CMakeLists.txt is used for installing the package without building and running tests. Testing is done via a separate CMakeLists.txt in the tests directory.

* Remove "samples" directory.

The content of that file is already in the documentation.

* Update README.md

Restructure the reference, add installation instructions, toc, other minor changes
2023-10-21 18:16:40 -04:00
nemtrif
0ee84daac8 Fix for issue #78: unchecked::utf16to8 reads out of bounds if provided only leading surrogate 2023-09-24 17:17:18 -04:00
nemtrif
79835a5fa5 Remove -Wsign-conversion from test builds. 2022-12-28 12:47:32 -05:00
nemtrif
53398ca702 Restructure tests. 2022-12-28 12:20:41 -05:00
nemtrif
e3e57c811a Fix for issue #92: Clang 10 Compiler warnings
Fix warnings when -Wconversion or -Wsign-conversion are enabled.
2022-12-26 14:19:04 -05:00
nemtrif
d736c29d38 Fix -Wconversion warnings in tests when -funsigned-char option is used.
This change affects only tests.
2022-12-24 14:45:04 -05:00
nemtrif
ee90a4a528 Added compiler options to enable warnings. 2022-10-02 17:51:50 -04:00
Nemanja Trifunovic
b85efd66a7 Test string literals 2021-06-06 11:09:04 -04:00
Nemanja Trifunovic
b6cd18f929 test_utf32to8 tests string_view, not string 2021-04-30 14:59:55 -04:00
Nemanja Trifunovic
4bed367c14 Update test docker image 2021-04-25 13:47:36 -04:00
Nemanja Trifunovic
a7d530de5f C++ 17 support: add tests, remove duplicate utf8::append() 2021-04-25 11:54:47 -04:00
Nemanja Trifunovic
fe79d14ae7 Switching from gtest to ftest for unit-testing. 2021-04-24 15:02:08 -04:00
Nemanja Trifunovic
2370b95a86 Compile negative test with C++ 98
An attempt to ensure the library can be compiled with a C++ 98 compiler.

Unfortunatelly, GTEST can't be compiled with C++ 98, so only the negative tests are included at this point.
2019-07-07 20:27:54 -04:00
Nemanja Trifunovic
33516ff074 Test -fno-exceptions with unchecked api 2019-04-25 14:23:02 -04:00
Nemanja Trifunovic
c523193025 unchecked::replace_invalid()
Add unchecked version of replace_invalid function.
2019-04-25 09:33:07 -04:00
Nemanja Trifunovic
04d29d92ae Add inline declarations to non-template functions in cpp11.h
Fix for issue #31
2019-04-15 17:49:11 -04:00
Nemanja Trifunovic
335a3ee6a0 Update docker to 3.0.1 2019-04-14 20:17:23 -04:00
Nemanja Trifunovic
0b45681b60 Add Dockerfile 2019-04-14 17:24:53 -04:00
Nemanja Trifunovic
66804081d4 Introduce GTest
Restructure tests to use Google Test framework
2019-04-11 10:25:49 -04:00