diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-07 14:47:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 11:08:03 +0200 |
commit | 473dd0feba4ab70980297b1277be16517576b714 (patch) | |
tree | 48d6645c10cd93847168e6db96dc72a847fa41e9 /libbuild2/file-cache.hxx | |
parent | 1703a30dec2695e7a5f1b81c633ac4c63479d9dd (diff) |
Add few missing noexcept qualifications
Diffstat (limited to 'libbuild2/file-cache.hxx')
-rw-r--r-- | libbuild2/file-cache.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/file-cache.hxx b/libbuild2/file-cache.hxx index d210685..e31517e 100644 --- a/libbuild2/file-cache.hxx +++ b/libbuild2/file-cache.hxx @@ -208,9 +208,9 @@ namespace build2 // Move-to-NULL-only type. // - entry (entry&&); + entry (entry&&) noexcept; entry (const entry&) = delete; - entry& operator= (entry&&); + entry& operator= (entry&&) noexcept; entry& operator= (const entry&) = delete; ~entry (); |