diff options
author | Chih-Hung Hsieh <chh@google.com> | 2018-10-01 17:55:21 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2018-10-01 17:55:21 -0700 |
commit | 270524ffe9463e2d20fda43584d24cd84d4602df (patch) | |
tree | a3e5f0301d2fc5a23e0c67262366f39c51e27892 | |
parent | 1fae1c1827f4a48beb1e7c4e3e62ea2d103fc6c3 (diff) |
Remove NOLINT.
Test: build with WITH_TIDY=1
Change-Id: I2992ed695d71cdd02e21015639951ea960e5feb5
-rw-r--r-- | update_manager/boxed_value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_manager/boxed_value.h b/update_manager/boxed_value.h index c6aaf4db..c40215e3 100644 --- a/update_manager/boxed_value.h +++ b/update_manager/boxed_value.h @@ -70,7 +70,7 @@ class BoxedValue { // move constructor explicitly preventing it from accidental references, // like in: // BoxedValue new_box(std::move(other_box)); - BoxedValue(BoxedValue&& other) noexcept // NOLINT(build/c++11) + BoxedValue(BoxedValue&& other) noexcept : value_(other.value_), deleter_(other.deleter_), printer_(other.printer_) { |