Update AMTL, replace ke::Deque with std::deque.

This commit is contained in:
David Anderson
2020-05-30 12:44:02 -07:00
parent 75fa198321
commit 979e410efc
5 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
/**
* vim: set ts=4 :
* vim: set ts=4 sts=8 sw=4 tw=99 noet :
* =============================================================================
* SourceMod
* Copyright (C) 2004-2015 AlliedModders LLC. All rights reserved.
@@ -154,7 +154,7 @@ private:
#if SOURCE_ENGINE == SE_CSGO
QueryCvarCookie_t m_LanguageCookie = InvalidQueryCvarCookie;
#endif
ke::Deque<std::string> m_PrintfBuffer;
std::deque<std::string> m_PrintfBuffer;
};
class PlayerManager :