From 182c8f8357739f905bbd721006480502435b6b43 Mon Sep 17 00:00:00 2001 From: rtk0c Date: Sun, 27 Nov 2022 12:04:31 -0800 Subject: Update brace style to match rest of my projects --- app/source/Cplt/Utils/IO/VectorIntegration.hpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'app/source/Cplt/Utils/IO/VectorIntegration.hpp') diff --git a/app/source/Cplt/Utils/IO/VectorIntegration.hpp b/app/source/Cplt/Utils/IO/VectorIntegration.hpp index 93967f6..e1a6108 100644 --- a/app/source/Cplt/Utils/IO/VectorIntegration.hpp +++ b/app/source/Cplt/Utils/IO/VectorIntegration.hpp @@ -8,11 +8,9 @@ namespace DataStreamAdapters { template -struct Vector -{ +struct Vector { template - static void ReadFromDataStream(InputDataStream& stream, std::vector& vec) - { + static void ReadFromDataStream(InputDataStream& stream, std::vector& vec) { static_assert(std::is_default_constructible_v); static_assert(std::is_move_constructible_v); @@ -31,8 +29,7 @@ struct Vector } template - static void WriteToDataStream(OutputDataStream& stream, const std::vector& vec) - { + static void WriteToDataStream(OutputDataStream& stream, const std::vector& vec) { stream.Write((uint64_t)vec.size()); for (auto& element : vec) { WriteHelper(stream, element); -- cgit v1.2.3-70-g09d2