Skip to content

Commit

Permalink
Disable runtime/explicit cpplint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Martín Rico <fmrico@gmail.com>
  • Loading branch information
fmrico committed May 18, 2021
1 parent def979b commit 8453f8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plansys2_core/include/plansys2_core/Types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Instance : public plansys2_msgs::msg::Param
: plansys2_msgs::msg::Param() {}
explicit Instance(const std::string & name, const std::string & type = {})
: plansys2_msgs::msg::Param(parser::pddl::fromStringParam(name, type)) {}
Instance(const plansys2_msgs::msg::Param & instance)
Instance(const plansys2_msgs::msg::Param & instance) // NOLINT(runtime/explicit)
: plansys2_msgs::msg::Param(instance) {}
};

Expand All @@ -54,7 +54,7 @@ class Predicate : public plansys2_msgs::msg::Node
: plansys2_msgs::msg::Node() {}
explicit Predicate(const std::string & pred)
: plansys2_msgs::msg::Node(parser::pddl::fromStringPredicate(pred)) {}
Predicate(const plansys2_msgs::msg::Node & pred)
Predicate(const plansys2_msgs::msg::Node & pred) // NOLINT(runtime/explicit)
: plansys2_msgs::msg::Node(pred) {}
};

Expand All @@ -65,7 +65,7 @@ class Function : public plansys2_msgs::msg::Node
: plansys2_msgs::msg::Node() {}
explicit Function(const std::string & func)
: plansys2_msgs::msg::Node(parser::pddl::fromStringFunction(func)) {}
Function(const plansys2_msgs::msg::Node & func)
Function(const plansys2_msgs::msg::Node & func) // NOLINT(runtime/explicit)
: plansys2_msgs::msg::Node(func) {}
};

Expand All @@ -76,7 +76,7 @@ class Goal : public plansys2_msgs::msg::Tree
: plansys2_msgs::msg::Tree() {}
explicit Goal(const std::string & goal)
: plansys2_msgs::msg::Tree(parser::pddl::fromString(goal)) {}
Goal(const plansys2_msgs::msg::Tree & goal)
Goal(const plansys2_msgs::msg::Tree & goal) // NOLINT(runtime/explicit)
: plansys2_msgs::msg::Tree(goal) {}
};

Expand Down

0 comments on commit 8453f8f

Please sign in to comment.