From 8e8cd7a8d9304b96cc80fbd2ea63e28d9f7595a3 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sat, 16 Jun 2018 13:22:33 +0200 Subject: Cleanup: remove eplicit constructors and unused member variable Remove the explicit constructor in DiveComputerNode: Just use classical C-style struct initialization. Moreover, remove the empty constructor and destructor of DiveComputerList. The variable DiveComputerList::dcWorkingMap was unused. Remove. Signed-off-by: Berthold Stoeger --- core/divecomputer.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'core/divecomputer.cpp') diff --git a/core/divecomputer.cpp b/core/divecomputer.cpp index 784add1d9..79edfc494 100644 --- a/core/divecomputer.cpp +++ b/core/divecomputer.cpp @@ -5,14 +5,6 @@ DiveComputerList dcList; -DiveComputerList::DiveComputerList() -{ -} - -DiveComputerList::~DiveComputerList() -{ -} - bool DiveComputerNode::operator==(const DiveComputerNode &a) const { return model == a.model && @@ -89,8 +81,7 @@ void DiveComputerList::addDC(QString m, uint32_t d, QString n, QString s, QStrin dcMap.remove(m, *existNode); } - DiveComputerNode newNode(m, d, s, f, n); - dcMap.insert(m, newNode); + dcMap.insert(m, { m, d, s, f, n }); } extern "C" void create_device_node(const char *model, uint32_t deviceid, const char *serial, const char *firmware, const char *nickname) -- cgit v1.2.3-70-g09d2