From e36051d57153ac3291568310a342c65d84df5ece Mon Sep 17 00:00:00 2001 From: Janis Born Date: Wed, 25 Nov 2015 11:21:38 +0100 Subject: [PATCH] brace style --- src/OpenMesh/Core/Geometry/Vector11T.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenMesh/Core/Geometry/Vector11T.hh b/src/OpenMesh/Core/Geometry/Vector11T.hh index 74bd21a0..acd0e11a 100644 --- a/src/OpenMesh/Core/Geometry/Vector11T.hh +++ b/src/OpenMesh/Core/Geometry/Vector11T.hh @@ -628,7 +628,8 @@ class VectorT { } /// swap with another vector - void swap(VectorT& _other) noexcept(noexcept(std::swap(values_, _other.values_))) { + void swap(VectorT& _other) + noexcept(noexcept(std::swap(values_, _other.values_))) { std::swap(values_, _other.values_); } @@ -712,8 +713,7 @@ cross(const VectorT& _v1, const VectorT& _v2) -> /// non-member swap template void swap(VectorT& _v1, VectorT& _v2) -noexcept(noexcept(_v1.swap(_v2))) -{ +noexcept(noexcept(_v1.swap(_v2))) { _v1.swap(_v2); }