Fix a gcc 4.3 style warning
*/
#include <dirent.h>
-#include <errno.h>
+#include <cerrno>
+#include <cstdlib>
#include <msp/core/except.h>
#ifndef WIN32
#include <fnmatch.h>
{
Path::Iterator i=path.begin();
Path::Iterator j=base.begin();
- for(; (i!=path.end() && j!=base.end() && *i==*j); ++i,++j);
+ for(; (i!=path.end() && j!=base.end() && *i==*j); ++i, ++j) ;
Path result;
for(; j!=base.end(); ++j)