minor typo / spelling / clang-tidy fixes (#468)

* Minor clean-ups

- fix a couple usage of std::function
- fix a couple usage of std::string
- remove ALIGN_LOOP, which didn't work
- fix a couple explicit/noexcept
- virtual -> override

* Fix spelling typos and other minor clang-tidy
This commit is contained in:
Mathias Agopian
2018-11-08 11:50:00 -08:00
committed by GitHub
parent 5fb0696fb7
commit f8f24f492f
64 changed files with 136 additions and 136 deletions

View File

@@ -26,7 +26,7 @@ TEST(BinaryTreeArray, basic) {
struct Node {
size_t index = 0;
size_t next = 0;
bool visited = 0;
bool visited = false;
};
Node array[256];