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>2010-04-19 04:02:07 +0400
committerBrodie Thiesfield <brofield@gmail.com>2010-04-19 04:02:07 +0400
commite0015ff018b74b15aa892fb6eadf48dde3f91fab (patch)
treea108741c816333ad03a36b28180ea0ec82ccec90
parent378bc6c1ee3ef826d73be2026e65fb962642aaf7 (diff)
v4.13, get rid of warning when building with VS 2010
-rw-r--r--SimpleIni.h4
-rw-r--r--package.cmd2
2 files changed, 3 insertions, 3 deletions
diff --git a/SimpleIni.h b/SimpleIni.h
index 06e061d..3b6fb64 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.12
+ <tr><th>Version <td>4.13
</table>
Jump to the @link CSimpleIniTempl CSimpleIni @endlink interface documentation.
@@ -1878,7 +1878,7 @@ CSimpleIniTempl<SI_CHAR,SI_STRLESS,SI_CONVERTER>::AddEntry(
if (a_pComment) {
oKey.pComment = a_pComment;
}
- typename TKeyVal::value_type oEntry(oKey, NULL);
+ typename TKeyVal::value_type oEntry(oKey, (const SI_CHAR *) NULL);
iKey = keyval.insert(oEntry);
bInserted = true;
}
diff --git a/package.cmd b/package.cmd
index e13ec50..47e48c9 100644
--- a/package.cmd
+++ b/package.cmd
@@ -1,4 +1,4 @@
-set VERSION=4.12
+set VERSION=4.13
set SEVENZIP="C:\Program Files\7-Zip\7z.exe"