summaryrefslogtreecommitdiffstats
path: root/Source/cmMachO.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-06-25 11:13:29 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-06-25 11:13:38 (GMT)
commitdba8086f58484f545c053a3c5175ec75df8a817f (patch)
tree87132d27e3759c50f6684f0676b3a29d1c4f492b /Source/cmMachO.h
parent92351fe7cd73a756effd5a42ff7f04c2d9beaf88 (diff)
parent5e52de7d5708c5d2faf00837bf5f10ed024cced1 (diff)
downloadCMake-dba8086f58484f545c053a3c5175ec75df8a817f.zip
CMake-dba8086f58484f545c053a3c5175ec75df8a817f.tar.gz
CMake-dba8086f58484f545c053a3c5175ec75df8a817f.tar.bz2
Merge topic 'refactor/use-unique_ptr'
5e52de7d57 modermize: replace some raw pointers w/ `unique_ptr` Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3465
Diffstat (limited to 'Source/cmMachO.h')
-rw-r--r--Source/cmMachO.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMachO.h b/Source/cmMachO.h
index 5482465..0c44b55 100644
--- a/Source/cmMachO.h
+++ b/Source/cmMachO.h
@@ -41,7 +41,7 @@ public:
private:
friend class cmMachOInternal;
bool Valid() const;
- cmMachOInternal* Internal;
+ std::unique_ptr<cmMachOInternal> Internal;
};
#endif