From bd1e76cc3ae94c0fb83ff11ca707ada66ace0be2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 17 Nov 2020 21:01:35 +0100 Subject: [PATCH] Untypedef some types for clarity when refactoring --- src/catch2/reporters/catch_reporter_cumulative_base.hpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/catch2/reporters/catch_reporter_cumulative_base.hpp b/src/catch2/reporters/catch_reporter_cumulative_base.hpp index 9945614e..f0d04b9f 100644 --- a/src/catch2/reporters/catch_reporter_cumulative_base.hpp +++ b/src/catch2/reporters/catch_reporter_cumulative_base.hpp @@ -36,10 +36,8 @@ namespace Catch { } SectionStats stats; - using ChildSections = std::vector>; - using Assertions = std::vector; - ChildSections childSections; - Assertions assertions; + std::vector> childSections; + std::vector assertions; std::string stdOut; std::string stdErr; };