summaryrefslogtreecommitdiff
path: root/shared/com_error.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /shared/com_error.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'shared/com_error.h')
-rw-r--r--shared/com_error.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/com_error.h b/shared/com_error.h
index ab365977..73551f6e 100644
--- a/shared/com_error.h
+++ b/shared/com_error.h
@@ -28,6 +28,9 @@ public:
}
private:
+ ComException(const ComException&);
+ ComException& operator=(const ComException&);
+
const std::wstring message_;
const HRESULT hr_;
};
bgstack15