Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-06-15 13:33:37 +0300
committerJacques Lucke <jacques@blender.org>2020-06-15 13:35:51 +0300
commit2797a63a66061096b3fd63918f54648fdd5396c4 (patch)
treed2d22254e36a18abf2a8b4ebed787bf9b0815190 /source/blender/blenlib/BLI_vector.hh
parentee61c1fe22846ea03ab9ca7a2a313a5b4ab9fcb0 (diff)
Cleanup: remove unnecessary code
This got committed due to a stupid mistake of mine, it does not belong there at all.
Diffstat (limited to 'source/blender/blenlib/BLI_vector.hh')
-rw-r--r--source/blender/blenlib/BLI_vector.hh2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_vector.hh b/source/blender/blenlib/BLI_vector.hh
index f61a3d4282b..25e3d2f969b 100644
--- a/source/blender/blenlib/BLI_vector.hh
+++ b/source/blender/blenlib/BLI_vector.hh
@@ -778,8 +778,6 @@ class Vector {
if (UNLIKELY(m_end >= m_capacity_end)) {
this->realloc_to_at_least(this->size() + 1);
}
- std::vector<int> a;
- a.push_back(4);
}
BLI_NOINLINE void realloc_to_at_least(uint min_capacity)