We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fec59e commit 1906855Copy full SHA for 1906855
Server/mods/deathmatch/logic/CBuildingManager.h
@@ -15,6 +15,7 @@
15
#include <list>
16
17
using std::list;
18
+using CBuildingListType = CFastList<CBuilding*>;
19
20
class CBuildingManager
21
{
@@ -28,7 +29,6 @@ class CBuildingManager
28
29
CBuilding* CreateFromXML(CElement* pParent, CXMLNode& Node, CEvents* pEvents);
30
void DeleteAll();
31
- using CBuildingListType = CFastList<CBuilding*>;
32
CBuildingListType::const_iterator IterBegin() const noexcept { return m_List.begin(); }
33
CBuildingListType::const_iterator IterEnd() const noexcept { return m_List.end(); }
34
0 commit comments