From 43fc82d318a350b44f8a810d7a8e0725b35001c9 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sat, 7 Mar 2015 14:04:15 +0100 Subject: [PATCH] Inheriting std::vector ctors in PointerList. --- Pointers.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Pointers.hpp b/Pointers.hpp index 958b256..4a7d607 100644 --- a/Pointers.hpp +++ b/Pointers.hpp @@ -38,6 +38,7 @@ public: template class PointerList: public std::vector { public: + using std::vector::vector; PointerList() {} PointerList(PointerList&) = delete;