Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrodie Thiesfield <brofield@gmail.com>2008-09-22 22:55:37 +0400
committerBrodie Thiesfield <brofield@gmail.com>2008-09-22 22:55:37 +0400
commit4127e13b00f6b7ec85bc2fcfc1785d7981a0d498 (patch)
tree32876f4a2cf8f1dbfc958af842fd2db43f4b194e
parent71b56bf6835b9f7b28e2fa33073f698547acfa7a (diff)
disable copy constructor and operator=
prepare for new release
-rw-r--r--SimpleIni.h6
-rw-r--r--package.cmd2
2 files changed, 6 insertions, 2 deletions
diff --git a/SimpleIni.h b/SimpleIni.h
index d8f1047..4f84a87 100644
--- a/SimpleIni.h
+++ b/SimpleIni.h
@@ -5,7 +5,7 @@
<tr><th>File <td>SimpleIni.h
<tr><th>Author <td>Brodie Thiesfield [code at jellycan dot com]
<tr><th>Source <td>http://code.jellycan.com/simpleini/
- <tr><th>Version <td>4.8.1
+ <tr><th>Version <td>4.8.2
</table>
Jump to the @link CSimpleIniTempl CSimpleIni @endlink interface documentation.
@@ -1000,6 +1000,10 @@ public:
/** @} */
private:
+ // copying is not permitted
+ CSimpleIniTempl(const CSimpleIniTempl &); // disabled
+ CSimpleIniTempl & operator=(const CSimpleIniTempl &); // disabled
+
/** Parse the data looking for a file comment and store it if found.
*/
SI_Error FindFileComment(
diff --git a/package.cmd b/package.cmd
index fbb1785..060161e 100644
--- a/package.cmd
+++ b/package.cmd
@@ -1,4 +1,4 @@
-set VERSION=4.8.1
+set VERSION=4.8.2
set SEVENZIP="C:\Program Files\7-Zip\7z.exe"