diff options
Diffstat (limited to 'Source/cmVSSetupHelper.h')
-rw-r--r-- | Source/cmVSSetupHelper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmVSSetupHelper.h b/Source/cmVSSetupHelper.h index 6549b93..ebcb28e 100644 --- a/Source/cmVSSetupHelper.h +++ b/Source/cmVSSetupHelper.h @@ -17,7 +17,7 @@ template <class T> class SmartCOMPtr { public: - SmartCOMPtr() {} + SmartCOMPtr() = default; SmartCOMPtr(T* p) { ptr = p; @@ -71,7 +71,7 @@ private: class SmartBSTR { public: - SmartBSTR() {} + SmartBSTR() = default; SmartBSTR(const SmartBSTR& src) = delete; SmartBSTR& operator=(const SmartBSTR& src) = delete; operator BSTR() const { return str; } |