summaryrefslogtreecommitdiff
path: root/zen/file_io_base.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
commit94db751716dd2851f99b5c4c2981da1d1f4780f8 (patch)
treee4ffc9f5ae2b2873f267a6e5d3d2092c8aad49a7 /zen/file_io_base.h
parent6.10 (diff)
downloadFreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.gz
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.bz2
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.zip
6.11
Diffstat (limited to 'zen/file_io_base.h')
-rw-r--r--zen/file_io_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/file_io_base.h b/zen/file_io_base.h
index 8e9bf12e..e56ea189 100644
--- a/zen/file_io_base.h
+++ b/zen/file_io_base.h
@@ -21,8 +21,8 @@ protected:
~FileBase() {}
private:
- FileBase(const FileBase&); //=delete
- FileBase& operator=(const FileBase&); //
+ FileBase (const FileBase&) = delete;
+ FileBase& operator=(const FileBase&) = delete;
const Zstring filename_;
};
bgstack15