mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-16 18:01:40 +00:00
Use STL containers instead of irr::core::list
This commit is contained in:
parent
1cc1c56234
commit
f1e4a671dc
8 changed files with 9 additions and 12 deletions
|
@ -139,7 +139,7 @@ MapBlock* Database_Dummy::loadBlock(v3s16 blockpos)
|
|||
return(NULL);
|
||||
}
|
||||
|
||||
void Database_Dummy::listAllLoadableBlocks(core::list<v3s16> &dst)
|
||||
void Database_Dummy::listAllLoadableBlocks(std::list<v3s16> &dst)
|
||||
{
|
||||
for(std::map<unsigned long long, std::string>::iterator x = m_database.begin(); x != m_database.end(); ++x)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue