Преглед изворни кода

Add note about thread_local

Esun Kim пре 6 година
родитељ
комит
019b82ca34
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      doc/core/moving-to-c++.md

+ 2 - 0
doc/core/moving-to-c++.md

@@ -33,6 +33,8 @@ C++ compatible with
 - This would limit us not to use modern C++11 standard library such as `filesystem`. 
 - This would limit us not to use modern C++11 standard library such as `filesystem`. 
   You can easily see whether PR is free from this issue by checking the result of
   You can easily see whether PR is free from this issue by checking the result of
   `Artifact Build Linux` test.
   `Artifact Build Linux` test.
+- `thread_local` is not allowed to use on Apple's products because their old OSes
+  (e.g. ios < 9.0) don't support `thread_local`.
 
 
 ## Roadmap
 ## Roadmap