shogo82148 / mecab

Unofficial fork of taku910/mecab (Yet another Japanese morphological analyzer)
https://shogo82148.github.io/mecab/
8 stars 1 forks source link

highest supported C++ standard and use thread_local #54

Closed shogo82148 closed 3 years ago

shogo82148 commented 3 years ago

__thread keyword is a specific language enhancement of GCC. There is no guarantee that it will work on other platforms.

thread_local is C++11 standardized version of __thread. thread_local is more compatible than __thread.