summaryrefslogtreecommitdiff
path: root/modules/bullet/rigid_body_bullet.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-02-22 09:55:27 +0100
committerGitHub <noreply@github.com>2019-02-22 09:55:27 +0100
commit726f31e992f544b73d8209eb95cc3d4ee501a0f0 (patch)
tree1d0631bd46efc30bb32ccc73c3797c322ad1150f /modules/bullet/rigid_body_bullet.h
parentc700d714bb8dad0b6aae525f880d2ee2d679e7b6 (diff)
parentc11e7ffd0ef0f34c00447efc1a95b57e3078f06f (diff)
Merge pull request #26132 from marxin/fix-Wignored-qualifiers
Fix warnings seen with -Wignored-qualifiers.
Diffstat (limited to 'modules/bullet/rigid_body_bullet.h')
-rw-r--r--modules/bullet/rigid_body_bullet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bullet/rigid_body_bullet.h b/modules/bullet/rigid_body_bullet.h
index 784e99ab86..1e1bea846a 100644
--- a/modules/bullet/rigid_body_bullet.h
+++ b/modules/bullet/rigid_body_bullet.h
@@ -167,7 +167,7 @@ public:
KinematicShape() :
shape(NULL) {}
- const bool is_active() const { return shape; }
+ bool is_active() const { return shape; }
};
struct KinematicUtilities {