From: Manuel Nickschas Date: Sun, 2 Sep 2018 21:23:06 +0000 (+0200) Subject: sigproxy: Don't expose the thread_local '_current' attribute X-Git-Tag: test-travis-01~152 X-Git-Url: https://git.quassel-irc.org/?a=commitdiff_plain;ds=sidebyside;h=fb80dab2044d302eb8ccacd0b34d4cbaf5fe904c;hp=fb80dab2044d302eb8ccacd0b34d4cbaf5fe904c;p=quassel.git sigproxy: Don't expose the thread_local '_current' attribute Windows does not allow exporting thread_local attributes in the DLL interface. Since it's not good practice anyway to expose such an implementation detail in the public header, make the accessor non-inline and move the attribute into a private anonymous namespace, removing it from the public interface. ---