diff options
Diffstat (limited to 'common/pipeline.h')
-rw-r--r-- | common/pipeline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pipeline.h b/common/pipeline.h index d04d795..ef89cf0 100644 --- a/common/pipeline.h +++ b/common/pipeline.h | |||
@@ -72,7 +72,7 @@ signals: | |||
72 | 72 | ||
73 | private: | 73 | private: |
74 | class Private; | 74 | class Private; |
75 | Private *const d; | 75 | const std::unique_ptr<Private> d; |
76 | }; | 76 | }; |
77 | 77 | ||
78 | class SINK_EXPORT Preprocessor | 78 | class SINK_EXPORT Preprocessor |
@@ -103,7 +103,7 @@ protected: | |||
103 | private: | 103 | private: |
104 | friend class Pipeline; | 104 | friend class Pipeline; |
105 | class Private; | 105 | class Private; |
106 | Private *const d; | 106 | const std::unique_ptr<Private> d; |
107 | }; | 107 | }; |
108 | 108 | ||
109 | template<typename DomainType> | 109 | template<typename DomainType> |