aboutsummaryrefslogtreecommitdiff
path: root/src/stack.tpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stack.tpp')
-rw-r--r--src/stack.tpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stack.tpp b/src/stack.tpp
index 958d6ca..405d493 100644
--- a/src/stack.tpp
+++ b/src/stack.tpp
@@ -3,7 +3,7 @@
#include <stdexcept>
template <typename Item>
-Stack<Item>::Stack(int capacity)
+Stack<Item>::Stack(unsigned long capacity)
{
_items.reserve(capacity);
}