diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-11 16:20:39 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-11 16:20:39 +0100 |
commit | cd696e64dfe8821fe13d959dd2d1a2ee892f9155 (patch) | |
tree | 692872ff268cbfd53bf0670481ef02ed7afaadc0 /src/util.h | |
parent | a6aa179699aa4e885a7d93cd28a8af012cd5df2b (diff) |
misc small changes to polish after include cleanup
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/util.h b/src/util.h index 7fae5cc7ec..d3687620dc 100644 --- a/src/util.h +++ b/src/util.h @@ -27,8 +27,6 @@ #include <sys/resource.h> #include <sys/time.h> #include <sys/types.h> -#else -typedef int pid_t; /* define for Windows compatibility */ #endif #include <boost/filesystem/path.hpp> @@ -109,7 +107,7 @@ inline void MilliSleep(int64_t n) #elif defined(HAVE_WORKING_BOOST_SLEEP) boost::this_thread::sleep(boost::posix_time::milliseconds(n)); #else - //should never get here +//should never get here #error missing boost sleep implementation #endif } |