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:
authorSean LK <sean@logicalknight.com>2014-10-20 18:52:41 +0400
committerNishant Mehta <nishant.mehta@jhuapl.edu>2014-11-12 17:09:22 +0300
commitbc55fb82f864fceda62fe6c1202cb4daedbdc1ed (patch)
tree8e24d1aeb7503502e9a3ec29cfa71f51f3a82ec7
parent35b458bf5760e305f04a506c07707d67b5af946c (diff)
Add missing #include for cstdlib
Required for functions like strtol.
-rw-r--r--SimpleIni.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/SimpleIni.h b/SimpleIni.h
index 2807a8f..a48ef0e 100644
--- a/SimpleIni.h
+++ b/SimpleIni.h
@@ -213,6 +213,7 @@
#endif
#include <cstring>
+#include <cstdlib>
#include <string>
#include <map>
#include <list>