| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 157e1f1 commit ebe3bef
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -296,12 +296,12 @@ class MatcherBase : private MatcherDescriberInterface { | |||
| 296 | 296 | return *this; | |
| 297 | 297 | } | |
| 298 | 298 | ||
| 299 | - MatcherBase(MatcherBase&& other) | ||
| 299 | + MatcherBase(MatcherBase&& other) noexcept | ||
| 300 | 300 | : vtable_(other.vtable_), buffer_(other.buffer_) { | |
| 301 | 301 | other.vtable_ = nullptr; | |
| 302 | 302 | } | |
| 303 | 303 | ||
| 304 | - MatcherBase& operator=(MatcherBase&& other) { | ||
| 304 | + MatcherBase& operator=(MatcherBase&& other) noexcept { | ||
| 305 | 305 | if (this == &other) return *this; | |
| 306 | 306 | Destroy(); | |
| 307 | 307 | vtable_ = other.vtable_; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments