From 83bd97261c6f74433c697aa3c4f15216695411d3 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Fri, 24 Aug 2018 13:59:42 -0700 Subject: remove redundant 'struct' from pimpl pattern --- src/CharacterSet.hpp | 2 +- src/PercentEncodedCharacterDecoder.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/CharacterSet.hpp b/src/CharacterSet.hpp index ba271f6..5abefdc 100644 --- a/src/CharacterSet.hpp +++ b/src/CharacterSet.hpp @@ -94,7 +94,7 @@ namespace Uri { /** * This contains the private properties of the instance. */ - std::unique_ptr< struct Impl > impl_; + std::unique_ptr< Impl > impl_; }; } diff --git a/src/PercentEncodedCharacterDecoder.hpp b/src/PercentEncodedCharacterDecoder.hpp index e4fddcb..04f769c 100644 --- a/src/PercentEncodedCharacterDecoder.hpp +++ b/src/PercentEncodedCharacterDecoder.hpp @@ -77,7 +77,7 @@ namespace Uri { /** * This contains the private properties of the instance. */ - std::unique_ptr< struct Impl > impl_; + std::unique_ptr< Impl > impl_; }; } -- cgit v1.2.3