Skip to content

Commit

Permalink
Addresses clang-tidy linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-langholtz committed Dec 22, 2023
1 parent ea0aeeb commit acb8fb9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Library/include/playrho/d2/AABB.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ class DistanceProxy;
struct Transformation;
class World;

using ::playrho::detail::Contains;
using ::playrho::detail::GetFattenedAABB;
using ::playrho::detail::GetDisplacedAABB;
using ::playrho::detail::GetIntersectingAABB;
using ::playrho::detail::Include;
using ::playrho::detail::TestOverlap;
using ::playrho::detail::Contains; // NOLINT(misc-unused-using-decls)
using ::playrho::detail::GetFattenedAABB; // NOLINT(misc-unused-using-decls)
using ::playrho::detail::GetDisplacedAABB; // NOLINT(misc-unused-using-decls)
using ::playrho::detail::GetIntersectingAABB; // NOLINT(misc-unused-using-decls)
using ::playrho::detail::Include; // NOLINT(misc-unused-using-decls)
using ::playrho::detail::TestOverlap; // NOLINT(misc-unused-using-decls)

/// @brief 2-Dimensional Axis Aligned Bounding Box.
using AABB = ::playrho::detail::AABB<2>;
Expand Down

0 comments on commit acb8fb9

Please sign in to comment.