You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug#33307561 TlsLibraryContext should not be copy/movable
Issue
=====
clang on windows warns:
warning: definition of implicit copy assignment operator for
'TlsLibraryContext' is deprecated because it has a user-declared
destructor [-Wdeprecated-copy-dtor]
Change
======
As the TlsLibaryContext should only be called and destructed once:
- disable copy/move construction
- disable copy/move assignment
RB: 26946
0 commit comments