From fcdb48779b0e109942ad2261670c6fc9344e2da3 Mon Sep 17 00:00:00 2001
From: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Date: Sun, 13 Sep 2020 18:21:53 +0200
Subject: [PATCH] cleanup: remove unused declarations in class DiveComputerList

The functions matchDC() and matchModel() were never implemented.
Remove their declarations.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
---
 core/divecomputer.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/core/divecomputer.h b/core/divecomputer.h
index d1ea62b9b..c92d56558 100644
--- a/core/divecomputer.h
+++ b/core/divecomputer.h
@@ -24,8 +24,6 @@ public:
 	const DiveComputerNode *getExact(const QString &m, uint32_t d);
 	const DiveComputerNode *get(const QString &m);
 	void addDC(QString m, uint32_t d, QString n = QString(), QString s = QString(), QString f = QString());
-	DiveComputerNode matchDC(const QString &m, uint32_t d);
-	DiveComputerNode matchModel(const QString &m);
 
 	// Keep the dive computers in a vector sorted by (model, deviceId)
 	QVector<DiveComputerNode> dcs;