Commit Graph

3 Commits

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