diff options
author | 2013-06-23 12:02:59 -0700 | |
---|---|---|
committer | 2013-11-02 14:19:50 -0700 | |
commit | 294dc29f7f33b566dec2f047ac4bb8ba28cd4702 (patch) | |
tree | ab1e1ffb7ced9879193e67ce4a8748b05bc3194f | |
parent | 20324ebe987d3fdccb9c18dfe8b0dbde571241b8 (diff) | |
download | paludis-294dc29f7f33b566dec2f047ac4bb8ba28cd4702.tar.gz paludis-294dc29f7f33b566dec2f047ac4bb8ba28cd4702.tar.xz |
util: avoid GNU extension usage
Redeclaration of forward declares is a GNU extension. This is unnecessary as it
has been already forward declarated at the appropriate point. This helps
compatibility with clang.
Signed-off-by: Saleem Abdulrasool <compnerd@compnerd.org>
-rw-r--r-- | paludis/util/singleton.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/paludis/util/singleton.hh b/paludis/util/singleton.hh index 7d213494e..1ceda464e 100644 --- a/paludis/util/singleton.hh +++ b/paludis/util/singleton.hh @@ -51,8 +51,6 @@ namespace paludis static void _delete(OurType_ * const p); - class DeleteOnDestruction; - public: ///\name Basic operations ///\{ |