mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 15:29:18 +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