Remove compiler fix for unsupported MSVC version

This commit is contained in:
Julian Eisel 2019-08-07 01:46:35 +02:00
parent f4e27bc2c9
commit 85c843b115
1 changed files with 0 additions and 5 deletions

View File

@ -88,12 +88,7 @@ struct GPUContext {
}
};
#if defined(_MSC_VER) && (_MSC_VER == 1800)
# define thread_local __declspec(thread)
thread_local GPUContext *active_ctx = NULL;
#else
static thread_local GPUContext *active_ctx = NULL;
#endif
static void orphans_add(GPUContext *ctx, std::vector<GLuint> *orphan_list, GLuint id)
{