Fix a gcc 4.3 style warning
Copyright © 2007 Mikko Rasa
Distributed under the LGPL
*/
+
#include <stack>
+#include <limits>
#include <msp/core/except.h>
#include "formatter.h"
#include "regex.h"
}
string::const_iterator end=iter;
- for(; (end!=str.end() && (end==iter || *end!=']')); ++end);
+ for(; (end!=str.end() && (end==iter || *end!=']')); ++end) ;
if(end==str.end())
throw InvalidParameterValue("Unmatched '['");
Distributed under the LGPL
*/
+#include <algorithm>
#include <list>
#include <msp/core/except.h>
#include "utils.h"