From 030e669e456e366ea35779d1a13eaff76ad87b22 Mon Sep 17 00:00:00 2001 From: Omar Shrit Date: Thu, 9 Sep 2021 21:06:22 +0200 Subject: [PATCH] Remove io_impl empty file Signed-off-by: Omar Shrit --- src/mlpack/core/util/CMakeLists.txt | 1 - src/mlpack/core/util/io.hpp | 3 --- src/mlpack/core/util/io_impl.hpp | 23 ----------------------- 3 files changed, 27 deletions(-) delete mode 100644 src/mlpack/core/util/io_impl.hpp diff --git a/src/mlpack/core/util/CMakeLists.txt b/src/mlpack/core/util/CMakeLists.txt index 65a467573e..4ffe767d47 100644 --- a/src/mlpack/core/util/CMakeLists.txt +++ b/src/mlpack/core/util/CMakeLists.txt @@ -9,7 +9,6 @@ set(SOURCES binding_details.hpp io.hpp io.cpp - io_impl.hpp deprecated.hpp hyphenate_string.hpp is_std_vector.hpp diff --git a/src/mlpack/core/util/io.hpp b/src/mlpack/core/util/io.hpp index 8c2d7104b7..714a7f9edf 100644 --- a/src/mlpack/core/util/io.hpp +++ b/src/mlpack/core/util/io.hpp @@ -307,7 +307,4 @@ class IO } // namespace mlpack -// Include the actual definitions of templated methods -#include "io_impl.hpp" - #endif diff --git a/src/mlpack/core/util/io_impl.hpp b/src/mlpack/core/util/io_impl.hpp deleted file mode 100644 index 2b6d7e96c8..0000000000 --- a/src/mlpack/core/util/io_impl.hpp +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @file core/util/io_impl.hpp - * @author Matthew Amidon - * - * Implementation of templated functions of the IO class. - * - * mlpack is free software; you may redistribute it and/or modify it under the - * terms of the 3-clause BSD license. You should have received a copy of the - * 3-clause BSD license along with mlpack. If not, see - * http://www.opensource.org/licenses/BSD-3-Clause for more information. - */ -#ifndef MLPACK_CORE_UTIL_IO_IMPL_HPP -#define MLPACK_CORE_UTIL_IO_IMPL_HPP - -// In case it has not already been included. -#include "io.hpp" -#include "prefixedoutstream.hpp" - -namespace mlpack { - -} // namespace mlpack - -#endif