File formatting.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-28 14:48:56 +02:00
parent 686f898259
commit c4b866cb38
45 changed files with 140 additions and 157 deletions

View File

@@ -11,8 +11,8 @@ class ContextPool {
public:
ContextPool(asIScriptEngine* engine) : _engine(engine) {}
~ContextPool(){
for (auto ctx: _pool){
~ContextPool() {
for (auto ctx : _pool) {
ctx->Release();
}
}