BAN: Remove unstable hash map and set
These can now be implemented safely with new linked list api
This commit is contained in:
@@ -72,9 +72,9 @@ struct ConjunctionModule : public Module
|
||||
}
|
||||
};
|
||||
|
||||
BAN::HashMapUnstable<BAN::String, BAN::UniqPtr<Module>> parse_modules(FILE* fp)
|
||||
BAN::HashMap<BAN::String, BAN::UniqPtr<Module>> parse_modules(FILE* fp)
|
||||
{
|
||||
BAN::HashMapUnstable<BAN::String, BAN::UniqPtr<Module>> modules;
|
||||
BAN::HashMap<BAN::String, BAN::UniqPtr<Module>> modules;
|
||||
|
||||
char buffer[128];
|
||||
while (fgets(buffer, sizeof(buffer), fp))
|
||||
|
||||
Reference in New Issue
Block a user