diff options
| author | Tom Tromey <tom@tromey.com> | 2021-05-04 15:26:58 -0600 |
|---|---|---|
| committer | Tom Tromey <tom@tromey.com> | 2021-05-05 00:06:16 -0600 |
| commit | c10a3b13fec850effc68c8b4f8861158f7fa7fed (patch) | |
| tree | 28e91c7827d116acb2a00a6eae6a5bcf1a0c143c /libcc1/connection.hh | |
| parent | 41f4381648feb1e5eaa27d108b21e2b95ad3739d (diff) | |
libcc1: delete copy constructor and assignment operators
Change libcc1 to use "= delete" for the copy constructor and
assignment operator, rather than the old approach of private methods
that are nowhere defined.
libcc1
* rpc.hh (argument_wrapper): Use delete for copy constructor.
* connection.hh (class connection): Use delete for copy
constructor.
* callbacks.hh (class callbacks): Use delete for copy constructor.
Diffstat (limited to 'libcc1/connection.hh')
| -rw-r--r-- | libcc1/connection.hh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libcc1/connection.hh b/libcc1/connection.hh index a0e99bdbd98..15ad1716a29 100644 --- a/libcc1/connection.hh +++ b/libcc1/connection.hh @@ -48,6 +48,9 @@ namespace cc1_plugin virtual ~connection () = default; + connection (const connection &) = delete; + connection &operator= (const connection &) = delete; + // Send a single character. This is used to introduce various // higher-level protocol elements. status send (char c); @@ -95,10 +98,6 @@ namespace cc1_plugin private: - // Declared but not defined, to prevent use. - connection (const connection &); - connection &operator= (const connection &); - // Helper function for the wait_* methods. status do_wait (bool); |
