From 55a1d06d3bd8d71d7de8926ff74e824e26e9618b Mon Sep 17 00:00:00 2001 From: Kim Walisch Date: Wed, 10 Jan 2024 17:43:00 +0100 Subject: [PATCH] Fix multiple spaces --- include/primesieve/Vector.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/primesieve/Vector.hpp b/include/primesieve/Vector.hpp index dd0f28446..94d3a8aba 100644 --- a/include/primesieve/Vector.hpp +++ b/include/primesieve/Vector.hpp @@ -113,7 +113,7 @@ class Vector array_ = other.array_; end_ = other.end_; - capacity_ = other.capacity_; + capacity_ = other.capacity_; other.array_ = tmp_array; other.end_ = tmp_end;