commit aa8dd2326d805f0a4c21e3d88d27c4ad25ad8ed2
parent d187bfd035b3543b2df9734c481cfde3d4f00c4e
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date: Tue, 26 Jul 2016 20:24:27 +0300
Remove duplicate of vec.hpp
Diffstat:
7 files changed, 0 insertions(+), 36 deletions(-)
diff --git a/examples/dft.cpp b/examples/dft.cpp
@@ -20,7 +20,6 @@
#include <kfr/expressions/reduce.hpp>
#include <kfr/math.hpp>
#include <kfr/misc/random.hpp>
-#include <kfr/vec.hpp>
using namespace kfr;
diff --git a/include/kfr/all.hpp b/include/kfr/all.hpp
@@ -86,7 +86,6 @@
#include "io/python_plot.hpp"
#include "io/tostring.hpp"
#include "math.hpp"
-#include "vec.hpp"
#include "dft/bitrev.hpp"
#include "dft/conv.hpp"
diff --git a/include/kfr/vec.hpp b/include/kfr/vec.hpp
@@ -1,25 +0,0 @@
-/**
- * Copyright (C) 2016 D Levin (http://www.kfrlib.com)
- * This file is part of KFR
- *
- * KFR is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * KFR is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with KFR.
- *
- * If GPL is not suitable for your project, you must purchase a commercial license to use KFR.
- * Buying a commercial license is mandatory as soon as you develop commercial activities without
- * disclosing the source code of your own applications.
- * See http://www.kfrlib.com for details.
- */
-#pragma once
-
-#include "base/vec.hpp"
diff --git a/sources.cmake b/sources.cmake
@@ -86,7 +86,6 @@ set(
${PROJECT_SOURCE_DIR}/include/kfr/misc/random.hpp
${PROJECT_SOURCE_DIR}/include/kfr/misc/small_buffer.hpp
${PROJECT_SOURCE_DIR}/include/kfr/misc/sort.hpp
- ${PROJECT_SOURCE_DIR}/include/kfr/vec.hpp
${PROJECT_SOURCE_DIR}/include/kfr/version.hpp
${PROJECT_SOURCE_DIR}/include/kfr/base/kfr.h
${PROJECT_SOURCE_DIR}/include/kfr/base/intrinsics.h
diff --git a/tests/basic_vector_test.cpp b/tests/basic_vector_test.cpp
@@ -8,7 +8,6 @@
#include <kfr/cometa/string.hpp>
#include <kfr/math.hpp>
-#include <kfr/vec.hpp>
#include <kfr/version.hpp>
#include "testo/testo.hpp"
diff --git a/tests/intrinsic_test.cpp b/tests/intrinsic_test.cpp
@@ -8,15 +8,9 @@
#include "testo/testo.hpp"
#include <kfr/math.hpp>
-#include <kfr/vec.hpp>
using namespace kfr;
-template <typename Fn>
-void test_intrinsic(Fn&& fn)
-{
-}
-
constexpr ctypes_t<i8x1, i16x1, i32x1, i64x1, //
i8x2, i16x2, i32x2, i64x2, //
i8x4, i16x4, i32x4, i64x4, //
diff --git a/tests/vec_test.cpp b/tests/vec_test.cpp
@@ -8,7 +8,6 @@
#include "testo/testo.hpp"
#include <kfr/math.hpp>
-#include <kfr/vec.hpp>
using namespace kfr;