diff options
-rw-r--r-- | apt-pkg/tagfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 4b6a5e78b..bbece1d7e 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -69,7 +69,7 @@ public: { bool const good; size_t length; - FileChunk(bool const pgood, size_t const plength) : good(pgood), length(plength) {} + FileChunk(bool const pgood, size_t const plength) noexcept : good(pgood), length(plength) {} }; std::list<FileChunk> chunks; |