Skip to content

Commit 4d396ac

Browse files
deps: update googletest to 279f847
PR-URL: #60219 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
1 parent 59b70e5 commit 4d396ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/googletest/include/gtest/gtest-matchers.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,12 @@ class MatcherBase : private MatcherDescriberInterface {
296296
return *this;
297297
}
298298

299-
MatcherBase(MatcherBase&& other)
299+
MatcherBase(MatcherBase&& other) noexcept
300300
: vtable_(other.vtable_), buffer_(other.buffer_) {
301301
other.vtable_ = nullptr;
302302
}
303303

304-
MatcherBase& operator=(MatcherBase&& other) {
304+
MatcherBase& operator=(MatcherBase&& other) noexcept {
305305
if (this == &other) return *this;
306306
Destroy();
307307
vtable_ = other.vtable_;

0 commit comments

Comments
 (0)