yse / easy_profiler

Lightweight profiler library for c++
MIT License
2.14k stars 184 forks source link

keyword static should come before thread local qualifier #166

Open nedm2 opened 4 years ago

nedm2 commented 4 years ago

static should come before __thread etc. This causes warnings with clang when using e.g. EASY_THREAD:

warning: '__thread' before 'static' [-Wpedantic]

It seems this was partially addressed with 53289ce but some instances were missed.