Fixing a build glitch in the non-intrusive exception_ptr support (Authorized by Eric)

[SVN r72995]
This commit is contained in:
Emil Dotchevski
2011-07-10 05:45:57 +00:00
parent f5dc3715bc
commit a73deaa3f3
6 changed files with 60 additions and 17 deletions

View File

@ -132,7 +132,17 @@ boost
}
};
#if defined(__GNUC__)
# if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
# pragma GCC visibility push (default)
# endif
#endif
class exception;
#if defined(__GNUC__)
# if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
# pragma GCC visibility pop
# endif
#endif
template <class T>
class shared_ptr;