diff --git a/libaegisub/unix/util.cpp b/libaegisub/unix/util.cpp index 4cf672119..6eaac61d1 100644 --- a/libaegisub/unix/util.cpp +++ b/libaegisub/unix/util.cpp @@ -15,22 +15,13 @@ #include #include - -#ifdef _LIBCPP_VERSION #include -#else -#include -#endif namespace agi { namespace util { void SetThreadName(const char *) { } void sleep_for(int ms) { -#ifdef __clang__ std::this_thread::sleep_for(std::chrono::milliseconds(ms)); -#else - boost::this_thread::sleep_for(boost::chrono::milliseconds(ms)); -#endif } } }