Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #391

Merged
merged 3 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
0067c8aa66aac548601e2a3fd029aa264cc59f2a
76b68f785df31b00e153290b45ec290a9c5f7963
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_branch: 'devel'
repos:
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v15.0.7
rev: v16.0.0
hooks:
- id: clang-format
args: ['--style={BasedOnStyle: Google, SortIncludes: false}']
Expand Down
4 changes: 2 additions & 2 deletions python/broadphase/broadphase_callbacks.hh
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ struct DistanceCallBackBaseWrapper : DistanceCallBackBase,
.def("distance",
bp::pure_virtual(
static_cast<bool (Self::*)(
CollisionObject * o1, CollisionObject * o2,
Eigen::Matrix<double, 1, 1> & dist)>(&Self::distance)),
CollisionObject* o1, CollisionObject* o2,
Eigen::Matrix<double, 1, 1>& dist)>(&Self::distance)),
doxygen::member_func_doc(&Base::distance))
.def("__call__", &Base::operator(),
doxygen::member_func_doc(&Base::operator()));
Expand Down