mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix lint that shows up in manual builds (flutter/engine#28311)
This commit is contained in:
parent
4c5d250e69
commit
3600461d13
@ -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().
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user