mirror of
https://github.com/catchorg/Catch2.git
synced 2024-12-23 11:43:29 +01:00
Untypedef some types for clarity when refactoring
This commit is contained in:
parent
166c520598
commit
bd1e76cc3a
@ -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;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user