Fix clang-tidy performance-noexcept-move-constructor warnings in headers

This commit is contained in:
Tim Wojtulewicz 2025-06-09 17:40:13 -07:00
parent a136159ceb
commit e7b89f81e9
3 changed files with 6 additions and 6 deletions

View file

@ -136,7 +136,7 @@ public:
#endif
}
Configuration(Configuration&& c) {
Configuration(Configuration&& c) noexcept {
zeek_version = std::move(c.zeek_version);
name = std::move(c.name);
@ -152,7 +152,7 @@ public:
version = c.version;
}
Configuration& operator=(Configuration&& c) {
Configuration& operator=(Configuration&& c) noexcept {
zeek_version = std::move(c.zeek_version);
name = std::move(c.name);