aboutsummaryrefslogtreecommitdiff
path: root/src/app/stack.tpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/stack.tpp')
-rw-r--r--src/app/stack.tpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/stack.tpp b/src/app/stack.tpp
index bcdafc0..263da67 100644
--- a/src/app/stack.tpp
+++ b/src/app/stack.tpp
@@ -6,7 +6,7 @@
#include <stdexcept>
template <typename Item>
-Stack<Item>::Stack(uint64_t capacity)
+Stack<Item>::Stack(const uint64_t &capacity)
{
_items.reserve(capacity);
}