From 326eb7c9e8a3ac09f06c93b8ed8d13d2c1d39b4a Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Thu, 25 Apr 2019 03:28:22 +0200 Subject: [PATCH] removed unused headers --- include/genimg/methods.hh | 3 +-- src/methods.cc | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/include/genimg/methods.hh b/include/genimg/methods.hh index ff1aa1f..e705a9f 100644 --- a/include/genimg/methods.hh +++ b/include/genimg/methods.hh @@ -4,7 +4,6 @@ #include #include #include -#include #include class ImageManipulator { @@ -119,7 +118,7 @@ class ImageManipulator { cv::Scalar(0, 0, 0)}; /*!< Working, generated image */ mutable std::mutex colors_mutex_{}; /*!< Thread mutex for color set generation */ - std::string const output_path_{""}; /*!< Write path for the generated image */ + std::string const output_path_{}; /*!< Write path for the generated image */ double diff_{euclidian_distance(generated_image_)}; /*!< Euclidian difference between \ref reference_ and \ref generated_image_ */ int const total_iterations_{0}; /*!< Number of iterations to perform */ diff --git a/src/methods.cc b/src/methods.cc index ada5a0e..f4bd6da 100644 --- a/src/methods.cc +++ b/src/methods.cc @@ -1,13 +1,9 @@ #include "methods.hh" #include #include -#include -#include -#include #include #include #include -#include static auto const thread_nbr = std::thread::hardware_concurrency();