Skip to content

Commit

Permalink
chore(query): add deprecated attribute to getAngleDifference
Browse files Browse the repository at this point in the history
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
  • Loading branch information
taikitanaka3 committed Jan 18, 2022
1 parent 61e05c4 commit 3b56ce7
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,9 @@ namespace lanelet
{
namespace utils
{
inline double getAngleDifference(const double angle1, const double angle2)
inline double [[deprecated]] getAngleDifference(const double angle1, const double angle2)
{
const double diff_angle = std::abs(tier4_autoware_utils::normalizeRadian(angle1 - angle2));
return diff_angle;
return std::abs(tier4_autoware_utils::normalizeRadian(angle1 - angle2));
}
namespace query
{
Expand Down

0 comments on commit 3b56ce7

Please sign in to comment.