Commit 5c8255f7 authored by Jiawen Geng's avatar Jiawen Geng Committed by Facebook GitHub Bot

make deleted function public for AsyncUDPSocket.h (#1603)

Summary:
Ref: https://abseil.io/tips/143

Pull Request resolved: https://github.com/facebook/folly/pull/1603

Differential Revision: D29034248

Pulled By: yfeldblum

fbshipit-source-id: 87ae1970eab3f067d71a480fc7a95b18e2041c6d
parent 5d231c67
...@@ -39,6 +39,9 @@ class AsyncUDPSocket : public EventHandler { ...@@ -39,6 +39,9 @@ class AsyncUDPSocket : public EventHandler {
public: public:
enum class FDOwnership { OWNS, SHARED }; enum class FDOwnership { OWNS, SHARED };
AsyncUDPSocket(const AsyncUDPSocket&) = delete;
AsyncUDPSocket& operator=(const AsyncUDPSocket&) = delete;
class ReadCallback { class ReadCallback {
public: public:
struct OnDataAvailableParams { struct OnDataAvailableParams {
...@@ -493,9 +496,6 @@ class AsyncUDPSocket : public EventHandler { ...@@ -493,9 +496,6 @@ class AsyncUDPSocket : public EventHandler {
ReadCallback* readCallback_; ReadCallback* readCallback_;
private: private:
AsyncUDPSocket(const AsyncUDPSocket&) = delete;
AsyncUDPSocket& operator=(const AsyncUDPSocket&) = delete;
void init(sa_family_t family, BindOptions bindOptions); void init(sa_family_t family, BindOptions bindOptions);
// EventHandler // EventHandler
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment