fix IOBuf self move-assignment
[folly.git] / folly / ThreadLocal.h
index 4ecc757ad440dc983c6842a010e905395d31bdcd..bae58411713318a01a404206eb1478c40b550807 100644 (file)
@@ -128,7 +128,8 @@ class ThreadLocal {
  * NOTE: Apple platforms don't support the same semantics for __thread that
  *       Linux does (and it's only supported at all on i386). For these, use
  *       pthread_setspecific()/pthread_getspecific() for the per-thread
- *       storage.
+ *       storage.  Windows (MSVC and GCC) does support the same semantics
+ *       with __declspec(thread)
  */
 
 template<class T, class Tag=void>