[libc++] Add missing visibility annotation for __base

Differential Revision: https://reviews.llvm.org/D48680
This commit is contained in:
Yunlian Jiang 2020-03-18 17:06:18 -04:00 committed by Louis Dionne
parent 49bdfd888d
commit 30ccc2e8d2
1 changed files with 1 additions and 1 deletions

View File

@ -1618,7 +1618,7 @@ public:
// __base provides an abstract interface for copyable functors.
template<class _Fp> class __base;
template<class _Fp> class _LIBCPP_TEMPLATE_VIS __base;
template<class _Rp, class ..._ArgTypes>
class __base<_Rp(_ArgTypes...)>