summaryrefslogtreecommitdiffstats
path: root/src/string_piece_util_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* [clang-tidy] remove pointless string initRosen Penev2020-11-071-2/+2
| | | | | | Found with readability-redundant-string-init Signed-off-by: Rosen Penev <rosenp@gmail.com>
* Add 'using namespace std;' to all cc files to prepare for removing it from ↵Michael Jones2020-09-301-0/+2
| | | | header files
* Add string_piece_utilTakuto Ikuta2017-04-261-0/+129
Following functions are implemented for further performance optimization. * JoinStringPiece * SplitStringPiece * EqualsCaseInsensitiveASCII * ToLowerASCII To improve performance of CLParser, I will introduce above functions into include_normalize-win32.cc.