Commit graph

33 commits

Author SHA1 Message Date
Nemanja Trifunovic
65701fe007 Compile time checks for size of UTF-16 code units 2025-01-11 11:09:19 -05:00
root
77870cc80b Fix Wsign-conversion warnings 2024-11-02 20:38:03 -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
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
aa3b12c52b Added a couple of statis_casts to eliminate signed conversion warnings. 2022-10-17 05:20:34 -04:00
Rémy Tassoux
ec6747005b Fix the inclusion of both cpp11 and cpp17 headers on C++17 compilation 2021-05-30 16:14:37 +02:00
Nemanja Trifunovic
0991356b73 find_invalid(string_view) returns string_view::npos, not string::npos 2021-04-30 14:58:30 -04:00
Nemanja Trifunovic
a7d530de5f C++ 17 support: add tests, remove duplicate utf8::append() 2021-04-25 11:54:47 -04:00
Rémy Tassoux
d40e4948f5 Support for C++17 2021-02-22 15:17:27 +01:00
Nemanja Trifunovic
3c85cd48f0 Add prefix to NOEXCEPT and OVERRIDE macros.
Fix for issue #72 : Macro names should have a prefix
2020-09-27 14:20:03 -04:00
Rick Gibbed
2b1521b48b Fix deprecated std::iterator usage (STL4015). 2020-02-22 08:15:16 -06:00
Joseph Edwards Van Riper III
32ccbfb747
Removed utf8 path from #include.
refs #43
2019-07-09 05:50:09 -04:00
Nemanja Trifunovic
89cfc3e38b Replace throw() with noexcept when using C++11 or later 2019-07-06 18:41:35 -04:00
Nemanja Trifunovic
687a59d88c Add override keyword when compiled with C++11 or later 2019-07-06 18:25:07 -04:00
Nemanja Trifunovic
f26d39e8ad Move C++ version detection to core.h 2019-07-06 17:21:02 -04:00
nemtrif
b1002fd198 Introduce UTF_CPP_CPLUSPLUS macro.
Let the users set the C++ standard version they want to support.
2019-06-30 13:06:11 -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
66804081d4 Introduce GTest
Restructure tests to use Google Test framework
2019-04-11 10:25:49 -04:00
Nemanja Trifunovic
a0a2d9d1e8 Fix for the cpp11.h header guard
Fix for the issue #27
2019-04-08 09:49:26 -04:00
nemtrif
7db72814ae
Merge pull request #24 from nemtrif/release_3_0
Release 3 0
2019-04-06 12:13:39 -04:00
Nemanja Trifunovic
007f8e32c4 advance() can work in backward direction.
advance() now can decrement the iterator if the number of steps to advance is negative.
2019-04-06 12:08:34 -04:00
Nemanja Trifunovic
92158c9ce1 Minor whitespace fixes 2019-04-02 20:20:28 -04:00
nemtrif
d8b09b3019
Merge pull request #21 from glebm/fix-remove-invalid
replace_invalid: Replace final incomplete sequence
2019-04-02 18:23:18 -04:00
Nemanja Trifunovic
00d73e4a02 Remove deprecated functions
Removed:
- previous
- is_bom
2019-04-02 17:54:36 -04:00
Nemanja Trifunovic
2b8596149e Support for C++11
Optional support for C++11 features
2019-04-02 17:54:36 -04:00
Akira Miyakoda
cfc351c861 Fix MSVC 2017-2019 warning about negative unsigned value.
Fix an MSVC warning by defining a constant by an immediate value instead of a formula including an intentional overflow.
2019-02-18 21:50:08 +09:00
Gleb Mazovetskiy
026aed63d9 replace_invalid: Replace final incomplete sequence
In replace_invalid, if NOT_ENOUGH_ROOM is returned by `validate_next`
then it simply means there is an incomplete sequence at the end of the
input.

Replace it instead of erroring out.
2018-11-28 00:39:15 +00:00
Nemanja Trifunovic
5408022bd6 Fix -Wshadow warnings
Fix the GNU and CLang's -Wshadow warning by renaming the input parameters.
2016-11-05 18:58:26 -04:00
Greg Hewgill
9d52bc19dc Check for end iterator before using iterator
If it == end, then sequence_length(it) will be called which will attempt to dereference the it iterator. This is normally harmless, because the get_sequence_x() functions each check to see whether it == end. However, some runtime libraries (MSVC CRT debug build in particular) check the validity of every iterator dereference, and a runtime check will be triggered inside sequence_length() if it is at the end.
2016-09-28 13:35:57 +13:00
Nemanja Trifunovic
46d0d807dc Initial import
Importing utf8 cpp 2.3.4 to GitHub.
2015-08-16 08:55:59 -04:00