Commit graph

25 commits

Author SHA1 Message Date
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