mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 06:35:52 +08:00
Use std::as_const (C++17 feature)
This commit is contained in:
@@ -1572,7 +1572,7 @@ namespace BlackMisc
|
||||
)
|
||||
);
|
||||
|
||||
for (const CAircraftModel &model : as_const(sorted))
|
||||
for (const CAircraftModel &model : std::as_const(sorted))
|
||||
{
|
||||
if (wasStopped) { break; } // allow breaking from external
|
||||
bool ok = false;
|
||||
|
||||
Reference in New Issue
Block a user