summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorhaslersn <sebastian.hasler@gmx.net>2019-06-10 03:42:58 +0200
committerhaslersn <sebastian.hasler@gmx.net>2019-07-02 00:18:10 +0200
commita4d4f59b27e13bc59bbb8e98186ce2258cf943e4 (patch)
treeafc88abcb3bc13f760455de9acad1e4628e4758c /include
parent1cc09f00b53dcea778f66f22f54335d157cfef3b (diff)
{database, performance_data}: Remove move ctor/assignment
move ctor/assignemnt doesn't make sense if there's no default constructor.
Diffstat (limited to 'include')
-rw-r--r--include/djinterop/enginelibrary/database.hpp10
-rw-r--r--include/djinterop/enginelibrary/performance_data.hpp10
2 files changed, 0 insertions, 20 deletions
diff --git a/include/djinterop/enginelibrary/database.hpp b/include/djinterop/enginelibrary/database.hpp
index 46596ed..28207ce 100644
--- a/include/djinterop/enginelibrary/database.hpp
+++ b/include/djinterop/enginelibrary/database.hpp
@@ -58,11 +58,6 @@ public:
database(const database &db) = delete;
/**
- * \brief Move constructor
- */
- database(database &&db) noexcept;
-
- /**
* \brief Destructor
*/
~database();
@@ -73,11 +68,6 @@ public:
database &operator=(const database &db) = delete;
/**
- * \brief Move assignment
- */
- database &operator=(database &&db) noexcept;
-
- /**
* \brief Returns a `bool` indicating whether the database files exist on
* disk or not
*/
diff --git a/include/djinterop/enginelibrary/performance_data.hpp b/include/djinterop/enginelibrary/performance_data.hpp
index fd0039b..c8807f7 100644
--- a/include/djinterop/enginelibrary/performance_data.hpp
+++ b/include/djinterop/enginelibrary/performance_data.hpp
@@ -298,11 +298,6 @@ public:
performance_data(const performance_data &other);
/**
- * \brief Move constructor
- */
- performance_data(performance_data &&other) noexcept;
-
- /**
* \brief Destructor
*/
~performance_data();
@@ -313,11 +308,6 @@ public:
performance_data &operator=(const performance_data &other);
/**
- * \brief Move assignment
- */
- performance_data &operator=(performance_data &&other) noexcept;
-
- /**
* \brief Tests whether performance data already exists for a given track
*/
static bool exists(const database &db, int track_id);