From b839ee09df5953c58f06de5d3c821319d8866e7b Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Thu, 27 Jun 2024 10:32:44 -0700 Subject: [PATCH] Clean up mis-use of 'using namespace hy_features::hydrolocation' in header --- include/core/nexus/HY_HydroNexus.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/core/nexus/HY_HydroNexus.hpp b/include/core/nexus/HY_HydroNexus.hpp index 637948416d..62c19395a1 100644 --- a/include/core/nexus/HY_HydroNexus.hpp +++ b/include/core/nexus/HY_HydroNexus.hpp @@ -10,7 +10,6 @@ #include #include -using namespace hy_features::hydrolocation; class HY_HydroNexus { public: @@ -19,7 +18,7 @@ class HY_HydroNexus //using Catchments = std::vector>; using Catchments = std::vector; - using HydroLocation = std::shared_ptr; + using HydroLocation = std::shared_ptr; HY_HydroNexus(std::string nexus_id, Catchments receiving_catchments); HY_HydroNexus(std::string nexus_id, Catchments receiving_catchments, Catchments contributing_catchments);