OS X also needs typename to be defined within the template, that makes Windows,BSD and OS X, it's better to exclude platforms when we hit them.

Originally committed to SVN as r4920.
This commit is contained in:
Amar Takhar 2010-12-08 18:58:10 +00:00
parent 944eaa535e
commit 063cd0480d
1 changed files with 2 additions and 5 deletions

View File

@ -260,12 +260,9 @@ class Signal<void> : public detail::SignalBaseImpl<std::tr1::function<void ()> >
using super::slots;
public:
Signal() { }
#if defined(_WIN32) || defined(__FreeBSD__)
// MSVC incorrectly considers this not a template context due to it being fully
// specified, making typename invalid here
// Work around compilters that can't tell this is a template context due to it
// being fully specified, making typename invalid here.
#define typename
#endif
/// @brief Trigger this signal
///