Skip to content

Commit 4569e51

Browse files
authored
Fix warnings in modern macos compilers
1 parent c4fb400 commit 4569e51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/narrowphase/detail/convexity_based_algorithm/test_gjk_libccd-inl_gjk_initializer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ GTEST_TEST(GjkLibccdSupportFunction, ConvexSupport) {
109109
// clang-format on
110110
const int kNumFaces = 6;
111111
const bool kThrowIfInvalid = true;
112-
const Convex<double> convex_C(move(vertices), kNumFaces, move(faces),
112+
const Convex<double> convex_C(std::move(vertices), kNumFaces, std::move(faces),
113113
kThrowIfInvalid);
114114

115115
/* Collection of arbitrary poses of the convex mesh: identity, translation,

0 commit comments

Comments
 (0)