Commit graph

17 commits

Author SHA1 Message Date
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
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
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
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
Nemanja Trifunovic
00d73e4a02 Remove deprecated functions
Removed:
- previous
- is_bom
2019-04-02 17:54:36 -04: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
Nemanja Trifunovic
46d0d807dc Initial import
Importing utf8 cpp 2.3.4 to GitHub.
2015-08-16 08:55:59 -04:00