Mark a few constexpr locals in ThreadLocalTest as static
authorChristopher Dykes <cdykes@fb.com>
Wed, 16 Nov 2016 21:20:32 +0000 (13:20 -0800)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Wed, 16 Nov 2016 21:24:54 +0000 (13:24 -0800)
commit77a350d28a77cfae6ef492cfcb9e2b30d05d0444
treeffa742adc226f86d811e4f44835292767b2303c0
parente50abbcc72f209750aea57f8bb16944728e7b2a7
Mark a few constexpr locals in ThreadLocalTest as static

Summary:
Because, as discussed in past diffs, MSVC currently requires them to be static in order to resolve them from within the scope of a lambda when they aren't captured.
The only one that actually needs to be marked as `static` is `numReps`, but I like consistency, so I marked them all as static.

Reviewed By: yfeldblum

Differential Revision: D4191610

fbshipit-source-id: 7246170f30551d2079b4373eefbf3d02aab6dfa9
folly/test/ThreadLocalTest.cpp