From: Carl Sorensen Date: Sat, 29 Oct 2011 23:46:47 +0000 (-0600) Subject: Add vector constructor with size argument X-Git-Tag: release/2.15.17-1~36 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5e14482b7f4f929c4a368d02185496f3f4b72cdc;p=lilypond.git Add vector constructor with size argument --- diff --git a/flower/include/std-vector.hh b/flower/include/std-vector.hh index 1d0cbbac3a..48b34f12ed 100644 --- a/flower/include/std-vector.hh +++ b/flower/include/std-vector.hh @@ -89,6 +89,10 @@ public: { } + vector (size_t n) : __flower_vector (n) + { + } + vector (vector const &v) : __flower_vector (v) { }