summaryrefslogtreecommitdiff
path: root/backgroundtask.cpp
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2018-01-14 03:42:04 -0500
committerPeter LaFosse <peter@vector35.com>2018-03-23 17:10:06 -0400
commit5f263139ad405f0ecd751f40ccb103e966c2ae64 (patch)
treef18377d2f54f6d203c529df592610dce3bef4002 /backgroundtask.cpp
parent86da0eb0216f0d778cce9885ea16588c0a2b0728 (diff)
Container Memory Reservations.
Diffstat (limited to 'backgroundtask.cpp')
-rw-r--r--backgroundtask.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/backgroundtask.cpp b/backgroundtask.cpp
index aebf980c..b2d4a738 100644
--- a/backgroundtask.cpp
+++ b/backgroundtask.cpp
@@ -67,6 +67,7 @@ vector<Ref<BackgroundTask>> BackgroundTask::GetRunningTasks()
BNBackgroundTask** tasks = BNGetRunningBackgroundTasks(&count);
vector<Ref<BackgroundTask>> result;
+ result.reserve(count);
for (size_t i = 0; i < count; i++)
result.push_back(new BackgroundTask(BNNewBackgroundTaskReference(tasks[i])));