summaryrefslogtreecommitdiff
path: root/src/thread-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread-utils.h')
-rw-r--r--src/thread-utils.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/thread-utils.h b/src/thread-utils.h
index 371dc0b26..914c1357d 100644
--- a/src/thread-utils.h
+++ b/src/thread-utils.h
@@ -40,10 +40,6 @@ typedef git_atomic git_atomic_ssize;
#ifdef GIT_THREADS
-#if defined(GIT_WIN32) && _WIN32_WINNT < 0x0600
-# error "Unsupported Windows version for thread support"
-#endif
-
#define git_thread pthread_t
#define git_thread_create(thread, attr, start_routine, arg) \
pthread_create(thread, attr, start_routine, arg)