From 3600461d134673a3c8fe7219dc08e8a9ea7a4623 Mon Sep 17 00:00:00 2001 From: Brandon DeRosier Date: Wed, 25 Aug 2021 16:27:17 -0700 Subject: [PATCH] Fix lint that shows up in manual builds (flutter/engine#28311) --- .../common/client_wrapper/include/flutter/encodable_value.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/shell/platform/common/client_wrapper/include/flutter/encodable_value.h b/engine/src/flutter/shell/platform/common/client_wrapper/include/flutter/encodable_value.h index 4998554e74c..dec1bdfc4b8 100644 --- a/engine/src/flutter/shell/platform/common/client_wrapper/include/flutter/encodable_value.h +++ b/engine/src/flutter/shell/platform/common/client_wrapper/include/flutter/encodable_value.h @@ -63,8 +63,8 @@ class CustomEncodableValue { ~CustomEncodableValue() = default; // Allow implicit conversion to std::any to allow direct use of any_cast. - operator std::any &() { return value_; } - operator const std::any &() const { return value_; } + operator std::any&() { return value_; } + operator const std::any&() const { return value_; } #if defined(FLUTTER_ENABLE_RTTI) && FLUTTER_ENABLE_RTTI // Passthrough to std::any's type().