Replace ke::Vector with std::vector.

This commit is contained in:
David Anderson
2020-05-31 11:35:51 -07:00
parent e5ddbd9886
commit 5d94f0bea8
41 changed files with 1174 additions and 1174 deletions
+1 -1
View File
@@ -768,7 +768,7 @@ CoreProviderImpl::DefineCommand(const char *name, const char *help, const Comman
ke::RefPtr<CommandHook> hook = AddCommandHook(cmd, callback);
ke::RefPtr<CommandImpl> impl = new CommandImpl(cmd, hook);
commands_.append(impl);
commands_.push_back(impl);
}
void CoreProviderImpl::InitializeHooks()