Remove unused classes and stray headers

Found by reviewing headers with 1 or less matching includes:
```
find -name thirdparty -prune -o -name "*.h" -exec basename {} \; | sort -u > headers
for header in $(cat headers); do echo "$header: "; rg -l "#include \"(.*/)?$header\"" | wc -l; done > list-includes
```
This commit is contained in:
Rémi Verschelde
2020-03-24 09:50:51 +01:00
parent c450d4d3bb
commit 9d24541597
22 changed files with 14 additions and 1664 deletions
+1 -2
View File
@@ -30,9 +30,8 @@
#include "test_oa_hash_map.h"
#include "core/os/os.h"
#include "core/oa_hash_map.h"
#include "core/os/os.h"
namespace TestOAHashMap {