Fix issue 11959 - Set private symbols declared in version(unittest) blocks

This commit is contained in:
Basile Burg 2018-08-25 19:32:04 +02:00
parent a86b12303b
commit db819575f1
12 changed files with 23 additions and 17 deletions

View file

@ -4123,7 +4123,7 @@ private struct RoundRobinBuffer(C1, C2)
version(unittest)
{
// This was the only way I could get nested maps to work.
__gshared TaskPool poolInstance;
private __gshared TaskPool poolInstance;
}
// These test basic functionality but don't stress test for threading bugs.