From 580e7138c24b19d73500dbcd8dde7a60b897d886 Mon Sep 17 00:00:00 2001 From: Max SCHMELLER Date: Tue, 10 Sep 2024 14:42:57 +0900 Subject: [PATCH] chore(point_filters): add `inline` to function in header file --- .../nebula_decoders_common/point_filters/parser.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nebula_decoders/include/nebula_decoders/nebula_decoders_common/point_filters/parser.hpp b/nebula_decoders/include/nebula_decoders/nebula_decoders_common/point_filters/parser.hpp index 38d3d6f44..2665e0f55 100644 --- a/nebula_decoders/include/nebula_decoders/nebula_decoders_common/point_filters/parser.hpp +++ b/nebula_decoders/include/nebula_decoders/nebula_decoders_common/point_filters/parser.hpp @@ -31,8 +31,8 @@ namespace nebula::drivers using nlohmann::json; using namespace std::string_literals; // NOLINT -nebula::util::expected>, std::string> parse_point_filters( - const std::string & s, SensorModel sensor_model) +inline nebula::util::expected>, std::string> +parse_point_filters(const std::string & s, SensorModel sensor_model) { if (s.empty()) { return std::vector>{};