Correct the signature for the copy constructor of `TestImpact::Pipe`

Signed-off-by: Chris Burel <burelc@amazon.com>
monroegm-disable-blank-issue-2
Chris Burel 4 years ago
parent 86aa5093ec
commit be785dbae8

@ -24,8 +24,8 @@ namespace TestImpact
public: public:
Pipe(SECURITY_ATTRIBUTES& sa, HANDLE& stdChannel); Pipe(SECURITY_ATTRIBUTES& sa, HANDLE& stdChannel);
Pipe(Pipe&& other) = delete; Pipe(Pipe&& other) = delete;
Pipe(Pipe& other) = delete; Pipe(const Pipe& other) = delete;
Pipe& operator=(Pipe& other) = delete; Pipe& operator=(const Pipe& other) = delete;
Pipe& operator=(Pipe&& other) = delete; Pipe& operator=(Pipe&& other) = delete;
//! Releases the child end of the pipe (not needed once parent has their end). //! Releases the child end of the pipe (not needed once parent has their end).

Loading…
Cancel
Save