summaryrefslogtreecommitdiff
path: root/src/hash-util.cc
Commit message (Collapse)AuthorAgeFilesLines
* Use C++17 string_view (#1826)Sam Clegg2022-02-111-38/+0
| | | | | Now that we have C++17 we don't need our own string_view class anymore. Depends on #1825
* Always include quoted headers like "src/foo.h" (#601)Ben Smith2017-08-301-1/+1
| | | This way the names won't conflict with other headers with the same name.
* Rename snake_case to MixedCase. (#579)Ben Smith2017-07-191-1/+1
| | | | There are no functional changes.
* Add wabt::string_view, based on C++17 string_view (#359)Ben Smith2017-03-171-0/+38
* Add wabt::string_view, based on C++17 string_view Also add wabt-unittests to test it.