Re-order constructors.

This commit is contained in:
tastytea 2020-11-13 19:37:12 +01:00
parent 4cb99531b1
commit 442f27a511
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 6 additions and 6 deletions

View File

@ -53,12 +53,6 @@ public:
*/
CURLWrapper();
//! Copy constructor. @since 0.1.0
CURLWrapper(const CURLWrapper &other) = delete;
//! Move constructor @since 0.1.0
CURLWrapper(CURLWrapper &&other) noexcept = delete;
/*!
* @brief Cleans up curl and connection.
*
@ -71,6 +65,12 @@ public:
*/
virtual ~CURLWrapper() noexcept;
//! Copy constructor. @since 0.1.0
CURLWrapper(const CURLWrapper &other) = delete;
//! Move constructor @since 0.1.0
CURLWrapper(CURLWrapper &&other) noexcept = delete;
//! Copy assignment operator @since 0.1.0
CURLWrapper &operator=(const CURLWrapper &other) = delete;