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;
using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
using Assertions = std::vector<AssertionStats>;
ChildSections childSections;
Assertions assertions;
std::vector<std::shared_ptr<SectionNode>> childSections;
std::vector<AssertionStats> assertions;
std::string stdOut;
std::string stdErr;
};