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();