changeset 428:c2b02b5f32a9

Ini: forgot to add stdexcept
author David Demelier <markand@malikania.fr>
date Wed, 14 Oct 2015 15:15:59 +0200
parents aa9cc55338be
children 31bddece9860
files C++/modules/Ini/Ini.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/C++/modules/Ini/Ini.h	Wed Oct 14 15:08:45 2015 +0200
+++ b/C++/modules/Ini/Ini.h	Wed Oct 14 15:15:59 2015 +0200
@@ -26,9 +26,13 @@
 
 #include <algorithm>
 #include <exception>
+#include <stdexcept>
 #include <string>
 #include <vector>
 
+/**
+ * Namespace for ini related classes.
+ */
 namespace ini {
 
 class Document;