mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Replace all uses of core::list with std::list (#12313)
This commit is contained in:
parent
2742fef458
commit
9f338f5a56
16 changed files with 36 additions and 148 deletions
|
@ -360,7 +360,7 @@ struct TestMapBlock: public TestBase
|
|||
|
||||
MapNode node;
|
||||
bool position_valid;
|
||||
core::list<v3s16> validity_exceptions;
|
||||
std::list<v3s16> validity_exceptions;
|
||||
|
||||
TC()
|
||||
{
|
||||
|
@ -371,7 +371,7 @@ struct TestMapBlock: public TestBase
|
|||
{
|
||||
//return position_valid ^ (p==position_valid_exception);
|
||||
bool exception = false;
|
||||
for(core::list<v3s16>::Iterator i=validity_exceptions.begin();
|
||||
for(std::list<v3s16>::iterator i=validity_exceptions.begin();
|
||||
i != validity_exceptions.end(); i++)
|
||||
{
|
||||
if(p == *i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue