Age | Commit message (Collapse) | Author |
|
I decided these were confusing and inconsistent with how JSON works.
They muddle the API rather than improving it.
|
|
Change .clang-format and commit automated changes from a fresh run of
format-code
|
|
|
|
|
|
Run this:
for i in **/*.cc **/*.c **/*.h **/*.hh; do
clang-format < $i >| $i.new && mv $i.new $i
done
|
|
|
|
|
|
Create a computationally and memory efficient implementation of name
and number trees that does binary searches as intended by the data
structure rather than loading into a map, which can use a great deal
of memory and can be very slow.
|