From fb6b04bf03904871f3b73c7ec7908a64287a7953 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Mon, 10 Aug 2020 17:22:47 +0200 Subject: [PATCH] Style Fix --- src/Memory/UniquePtrList.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Memory/UniquePtrList.hpp b/src/Memory/UniquePtrList.hpp index 5b5ed36..9ea8e46 100644 --- a/src/Memory/UniquePtrList.hpp +++ b/src/Memory/UniquePtrList.hpp @@ -46,7 +46,7 @@ namespace ArbUt { _vector[index] = nullptr; return p; } - void Swap(size_t indexA, size_t indexB){ + void Swap(size_t indexA, size_t indexB) { auto temp = _vector[indexA]; _vector[indexA] = _vector[indexB]; _vector[indexB] = temp;