From a073f97ce15e4712650f81bb14de67fd654f4d0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez=20Cordero?= Date: Mon, 8 Jul 2024 19:27:24 +0200 Subject: [PATCH] Removed rolling mean accumulator deprecated header (#194) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro Hernández Cordero --- include/rcppmath/rolling_mean_accumulator.hpp | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 include/rcppmath/rolling_mean_accumulator.hpp diff --git a/include/rcppmath/rolling_mean_accumulator.hpp b/include/rcppmath/rolling_mean_accumulator.hpp deleted file mode 100644 index 71a9e51..0000000 --- a/include/rcppmath/rolling_mean_accumulator.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright 2020 PAL Robotics S.L. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -#ifndef RCPPMATH__ROLLING_MEAN_ACCUMULATOR_HPP_ -#define RCPPMATH__ROLLING_MEAN_ACCUMULATOR_HPP_ - -#include "rcpputils/rolling_mean_accumulator.hpp" - -#warning \ - "the rcppmath namespace is deprecated, include rcpputils/rolling_mean_accumulator.hpp instead" - -namespace rcppmath -{ - -template -using RollingMeanAccumulator [[deprecated("use rcpputils::RollingMeanAccumulator instead")]] = - rcpputils::RollingMeanAccumulator; - -} // namespace rcppmath - -#endif // RCPPMATH__ROLLING_MEAN_ACCUMULATOR_HPP_