mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-16 09:41:42 +00:00
Fix bug causing vector removal to skip elements
This commit is contained in:
@@ -145,10 +145,5 @@ namespace Tasking
|
||||
}
|
||||
|
||||
Security::Security() {}
|
||||
|
||||
Security::~Security()
|
||||
{
|
||||
for (size_t i = 0; i < Tokens.size(); i++)
|
||||
Tokens.remove(i);
|
||||
}
|
||||
Security::~Security() { Tokens.clear(); }
|
||||
}
|
||||
|
Reference in New Issue
Block a user