[ox/std] Add expand to HashMap

This commit is contained in:
2019-02-03 01:13:35 -06:00
parent 87e6b8d19f
commit 9ca27361dc
2 changed files with 42 additions and 17 deletions

View File

@@ -59,7 +59,6 @@ map<string, function<int()>> tests = {
ox::HashMap<const char*, int> v;
v["asdf"] = 42;
v["aoeu"] = 100;
std::cout << v["asdf"];
oxAssert(v["asdf"] == 42, "asdf != 42");
oxAssert(v["aoeu"] == 100, "aoeu != 100");
return 0;