diff options
author | arcadia-devtools <[email protected]> | 2022-03-17 19:47:30 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-03-17 19:47:30 +0300 |
commit | 6cd2f2e57d12f964d04a6d930e03fb2103e150fb (patch) | |
tree | a8db9c73a8e424560b3c4630b25eb7b696865ae2 /contrib/libs/cxxsupp/libcxx/include/ios | |
parent | 5d55b92061339c2513c9c587480e1ca10c704fc1 (diff) |
intermediate changes
ref:b701e8676af251d91697287754da22505ad43d4e
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/ios')
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/ios | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/ios b/contrib/libs/cxxsupp/libcxx/include/ios index b7d32946bff..237d146dfb8 100644 --- a/contrib/libs/cxxsupp/libcxx/include/ios +++ b/contrib/libs/cxxsupp/libcxx/include/ios @@ -308,11 +308,9 @@ public: typedef void (*event_callback)(event, ios_base&, int __index); void register_callback(event_callback __fn, int __index); -private: - ios_base(const ios_base&); // = delete; - ios_base& operator=(const ios_base&); // = delete; + ios_base(const ios_base&) = delete; + ios_base& operator=(const ios_base&) = delete; -public: static bool sync_with_stdio(bool __sync = true); _LIBCPP_INLINE_VISIBILITY iostate rdstate() const; |