diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-23 12:12:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-23 12:12:04 +0200 |
commit | f29c9a5a0cdca0205f98d55ad20d1145295db126 (patch) | |
tree | b2b2e5df52175410707ad7d8d60d015736b4e10b /butl/small-vector | |
parent | 06f409edcbf653aa008ac0383609f13624bce9f7 (diff) |
Minor changes
Diffstat (limited to 'butl/small-vector')
-rw-r--r-- | butl/small-vector | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/butl/small-vector b/butl/small-vector index 5bfbd17..3e50735 100644 --- a/butl/small-vector +++ b/butl/small-vector @@ -230,7 +230,8 @@ namespace butl // VC's implementation of operator=(&&) (both 14 and 15) frees the // memory and then reallocated with capacity equal to v.size(). This is // clearly sub-optimal (the existing buffer could be reused) so we hope - // this will be fixed eventually (VSO#367146). + // this will be fixed eventually (VSO#367146; reportedly fixed for + // VC15U1). // #if defined(_MSC_VER) && _MSC_VER <= 1910 if (v.size () < N) |