Browse Source

Added newlines to end of files, because clang++ complains about that. Added case distinction of struct definition in parser.h for Mac OS to work correctly with parser.cpp.

tempestpy_adaptions
dehnert 12 years ago
parent
commit
b76f392df1
  1. 10
      src/parser/parser.h

10
src/parser/parser.h

@ -64,12 +64,20 @@ namespace parser {
HANDLE mapping;
#endif
#if defined LINUX || defined MACOSX
#if defined LINUX
/*!
* @brief stat information about the file.
*/
struct stat64 st;
#elif defined MACOSX
/*!
* @brief stat information about the file.
*/
struct stat st;
#elif defined WINDOWS
/*!
* @brief stat information about the file.
*/
struct __stat64 st;
#endif

Loading…
Cancel
Save