Untypedef some types for clarity when refactoring

This commit is contained in:
Martin Hořeňovský 2020-11-17 21:01:35 +01:00
parent 166c520598
commit bd1e76cc3a
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 2 additions and 4 deletions

View File

@ -36,10 +36,8 @@ namespace Catch {
} }
SectionStats stats; SectionStats stats;
using ChildSections = std::vector<std::shared_ptr<SectionNode>>; std::vector<std::shared_ptr<SectionNode>> childSections;
using Assertions = std::vector<AssertionStats>; std::vector<AssertionStats> assertions;
ChildSections childSections;
Assertions assertions;
std::string stdOut; std::string stdOut;
std::string stdErr; std::string stdErr;
}; };