From 4d74de36e00d3f1a01b9c0498289f1649b43102d Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Fri, 23 Feb 2024 15:45:49 -0800 Subject: [PATCH] Don't specify empty default constructor and destructor --- include/core/Partition_One.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/core/Partition_One.hpp b/include/core/Partition_One.hpp index 2b141c866a..c18fa6b696 100644 --- a/include/core/Partition_One.hpp +++ b/include/core/Partition_One.hpp @@ -16,8 +16,6 @@ class Partition_One { public: - Partition_One() {}; - /** * The function that parses geojson::GeoJSON data and build unordered sets of catchment_ids and nexus_ids @@ -35,8 +33,6 @@ class Partition_One { partition_data.mpi_world_rank = 0; } - virtual ~Partition_One(){}; - PartitionData partition_data; };