Skip to content

Commit

Permalink
chore(point_filters): add inline to function in header file
Browse files Browse the repository at this point in the history
  • Loading branch information
mojomex committed Sep 10, 2024
1 parent fbc05f4 commit 5284e97
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ namespace nebula::drivers
using nlohmann::json;
using namespace std::string_literals; // NOLINT

nebula::util::expected<std::vector<std::shared_ptr<PointFilter>>, std::string> parse_point_filters(
const std::string & s, SensorModel sensor_model)
inline nebula::util::expected<std::vector<std::shared_ptr<PointFilter>>, std::string>
parse_point_filters(const std::string & s, SensorModel sensor_model)
{
if (s.empty()) {
return std::vector<std::shared_ptr<PointFilter>>{};
Expand Down

0 comments on commit 5284e97

Please sign in to comment.