Skip to content

Commit 6735585

Browse files
nodejs-github-botaduh95
authored andcommitted
deps: update googletest to 279f847
PR-URL: #60219 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
1 parent 6e42852 commit 6735585

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)