diff options
| author | Philip Kaufmann <[email protected]> | 2013-11-11 16:20:39 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-11-11 16:20:39 +0100 |
| commit | cd696e64dfe8821fe13d959dd2d1a2ee892f9155 (patch) | |
| tree | 692872ff268cbfd53bf0670481ef02ed7afaadc0 /src/util.h | |
| parent | Merge pull request #3187 from Diapolo/netManager (diff) | |
| download | discoin-cd696e64dfe8821fe13d959dd2d1a2ee892f9155.tar.xz discoin-cd696e64dfe8821fe13d959dd2d1a2ee892f9155.zip | |
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 7fae5cc7e..d3687620d 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 } |