]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dynarray.h
support retina display
[wxWidgets.git] / include / wx / dynarray.h
index aa066b54b8f7cc0f0299eab3f6eb6142657dd961..a7ebbfe176e552a764ee3662aeb12330baf599c9 100644 (file)
@@ -128,6 +128,8 @@ public:                                                             \
   name() : std::vector<T>() { }                                     \
   name(size_type n) : std::vector<T>(n) { }                         \
   name(size_type n, const_reference v) : std::vector<T>(n, v) { }   \
+  template <class InputIterator>                                    \
+  name(InputIterator first, InputIterator last) : std::vector<T>(first, last) { } \
                                                                     \
   void Empty() { clear(); }                                         \
   void Clear() { clear(); }                                         \