Fixed #5925: The first include in path.cpp is not path.h and astyle run.

This commit is contained in:
orbitcowboy 2014-06-16 15:11:44 +02:00
parent c8e4ac1b03
commit be49185471
2 changed files with 3 additions and 3 deletions

View File

@ -58,6 +58,6 @@
<podtype name="in_port_t" sign="u" size="2"/>
<podtype name="in_addr_t" sign="u" size="4"/>
<podtype name="socklen_t" sign="u" size="4"/>
<podtype name="sa_family_t" sign="u" size="2"/>
<podtype name="sa_family_t" sign="u" size="2"/>
</def>

View File

@ -19,12 +19,12 @@
#if defined(__GNUC__) && (defined(_WIN32) || defined(__CYGWIN__))
#undef __STRICT_ANSI__
#endif
#include "path.h"
#include <algorithm>
#include <vector>
#include <sstream>
#include <cstring>
#include <cctype>
#include "path.h"
/** Is the filesystem case insensitive? */
static bool caseInsensitiveFilesystem()