Last piece of Windows support.

YCM should now compile cleanly on MSVC. Fixes #19.
This commit is contained in:
Strahinja Val Markovic 2013-02-05 19:40:43 -08:00
parent ace95db4f0
commit 02201c866b

View File

@ -155,3 +155,10 @@ BOOST_PYTHON_MODULE(ycm_core)
#endif // USE_CLANG_COMPLETER #endif // USE_CLANG_COMPLETER
} }
// Boost.Thread forces us to implement this.
// We don't use any thread-specific (local) storage so it's fine to implement
// this as an empty function.
namespace boost {
void tss_cleanup_implemented() {}
};