Change typedefs to using

This commit is contained in:
Martin Hořeňovský
2017-07-27 12:24:21 +02:00
parent 33fd54a673
commit 307eeefa8f
3 changed files with 4 additions and 5 deletions

View File

@@ -10,7 +10,7 @@
namespace Catch {
class MultipleReporters : public IStreamingReporter {
typedef std::vector<IStreamingReporterPtr> Reporters;
using Reporters = std::vector<IStreamingReporterPtr>;
Reporters m_reporters;
public: