summaryrefslogtreecommitdiff
path: root/src/lib/util/encode
AgeCommit message (Collapse)Author
2016-12-14Added #include <config.h> to all .cc files.Andrei Pavel
2016-08-28[v1_1_0] Copyright dates updateWlodek Wencel
2016-08-16[master] Finished merge of trac4272a (meta-info in classification)Francis Dupont
2016-08-08[4272a] Addressed commentsFrancis Dupont
2016-07-08[4497] Spelling, no \n at end of .gitignore, etcFrancis Dupont
2016-07-08[4497] Added .gitignores to non-recursively built directories.Marcin Siodelski
2015-12-16[4236] Updated copyright dates in all files.Marcin Siodelski
2015-12-16[4236] Replaced license text in all files containing it.Marcin Siodelski
2015-08-18[4006] removed pfto macros and some compiler junk conditionalsFrancis Dupont
2015-06-13[3899] Copyright yearsFrancis Dupont
2015-06-13[3899] Added missing space in invalid padding error messageFrancis Dupont
2014-08-21[3526] compilation fix for RedHat on armv7Tomek Mrugalski
Thanks to Jiri Popelka for the fix
2013-03-13[master] fix clang issue with exception in unnamed namespaceJelte Jansen
2013-03-06[master] Merge branch 'trac2764'JINMEI Tatuya
2013-03-06[2764] cleanup: removed an unused member functionJINMEI Tatuya
it was a leftover from an intermediate attempt.
2013-03-06[2764] use x % 8 instead of x & 7 to check x is a multiple of 8JINMEI Tatuya
assuming the compiler optimizes the former (more understandable but possibly less efficient) to the latter (less understandable but efficient).
2013-03-06[master] many misspelling and typo fixesJeremy C. Reed
reviewed by jelte via jabber. Changes some log message descriptions and some function arguments and some output.
2013-03-05[2764] unified exception messages for the two incomplete-input cases.JINMEI Tatuya
adjusted one unit test case based on the message change.
2013-03-05[2764] detect intermediate padding explicitly.JINMEI Tatuya
we previously relied on boost rejecting the padding chracter and throwing an exception; since Boost 1.53 paddding characters are considered valid and conerted to all-0 bits, so we now have to do it ourselves. The detection logic doesn't rely on the new behavior of Boost, so it should be backward compatible.
2013-03-05[2764] implement postfix version of EncodeNormalizer::operator++.JINMEI Tatuya
transform_width in Boost 1.53 requires this version, so build will fail without it.
2012-12-19[master] make the use of isspace() more portable regarding signedness of charJINMEI Tatuya
the old code seems to be rejected in an ARM environment okayed on jabber.
2012-10-25[2357] Update scaffolding using fix-scaffolding.py toolMukund Sivaraman
See bug #2367 for the fix-scaffolding.py tool.
2011-06-07Merge branch 'trac838'Ocean Wang
2011-06-07[trac838] Add more comments to skipSpaces() function and fix style problems.Ocean Wang
2011-05-25[trac838] Check the value passed to isspace() is not less than 0Ocean Wang
2011-05-05[trac838] counter proposal for the isspace() problem: use simply castJINMEI Tatuya
rather than conditional call.
2011-05-05[trac838] counter proposal to the "dereferencing end iterator" (and related) ↵JINMEI Tatuya
problem: - added more detailed comments about the exception - removed the now unnecessary check for *base_ (against PADDING CHAR) when in_pad_ - handled beginning spaces correctly
2011-05-05[master] fixed a minor typo in a comment line. pushing it directly.JINMEI Tatuya
2011-05-05[trac838] Check the iterator is not the end() iterator when dereferenced in ↵Ocean Wang
DecodeNormalizer
2011-05-04[trac838] Make sure the parameter passed to isspace() is larger than 0 to ↵Ocean Wang
avoid ASSERT failing on Windows platform.
2011-05-03[trac838] check the iterator before deference itOcean Wang
2011-04-14[trac749] rename namespacechenzhengzhang