aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2018-08-24 13:59:42 -0700
committerRichard Walters <rwalters@digitalstirling.com>2018-08-24 13:59:42 -0700
commit83bd97261c6f74433c697aa3c4f15216695411d3 (patch)
treef17c3d92d1e6526b2510b0362aaaf153ee8286ba
parentba59bf4fe2216dd86ee2083b28f85beda1e1b845 (diff)
remove redundant 'struct' from pimpl pattern
-rw-r--r--include/Uri/Uri.hpp2
-rw-r--r--src/CharacterSet.hpp2
-rw-r--r--src/PercentEncodedCharacterDecoder.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp
index 82b426f..431203e 100644
--- a/include/Uri/Uri.hpp
+++ b/include/Uri/Uri.hpp
@@ -334,7 +334,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/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_;
};
}