Skip to content

Commit cc411a7

Browse files
author
apple-llvm-mt
committed
Merge libcxx: [NFC][libc++] Remove stray semi-colon after function definition
apple-llvm-split-dir: libcxx/
2 parents a9a72a0 + 205ead8 commit cc411a7

File tree

1 file changed

+1
-1
lines changed
  • libcxx/include

1 file changed

+1
-1
lines changed

libcxx/include/any

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ any::any(_ValueType && __v) : __h(nullptr)
507507
template <class _ValueType, class ..._Args, class _Tp, class>
508508
any::any(in_place_type_t<_ValueType>, _Args&&... __args) {
509509
__any_imp::_Handler<_Tp>::__create(*this, _VSTD::forward<_Args>(__args)...);
510-
};
510+
}
511511

512512
template <class _ValueType, class _Up, class ..._Args, class _Tp, class>
513513
any::any(in_place_type_t<_ValueType>, initializer_list<_Up> __il, _Args&&... __args) {

0 commit comments

Comments
 (0)