summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2018-10-01 17:55:21 -0700
committerChih-Hung Hsieh <chh@google.com>2018-10-01 17:55:21 -0700
commit270524ffe9463e2d20fda43584d24cd84d4602df (patch)
treea3e5f0301d2fc5a23e0c67262366f39c51e27892
parent1fae1c1827f4a48beb1e7c4e3e62ea2d103fc6c3 (diff)
Remove NOLINT.
Test: build with WITH_TIDY=1 Change-Id: I2992ed695d71cdd02e21015639951ea960e5feb5
-rw-r--r--update_manager/boxed_value.h2
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_) {