add last backwards-compatible version

This commit is contained in:
2021-12-14 00:33:46 -07:00
parent 68b10d413b
commit b0dd3f07f3
335 changed files with 4746 additions and 19627 deletions

View File

@@ -43,16 +43,6 @@ namespace pfc {
thread_selftest t; t.selftest();
}
{
pfc::map_t<pfc::string8, int, pfc::comparator_strcmp> map;
map["1"] = 1;
map["2"] = 2;
map["3"] = 3;
PFC_ASSERT(map.get_count() == 3);
PFC_ASSERT(map["1"] == 1);
PFC_ASSERT(map["2"] == 2);
PFC_ASSERT(map["3"] == 3);
}
}
// Self test routines that fail at compile time if there's something seriously wrong
void selftest_static() {