[code-quality] fix clang-tidy core optional (#7265)

This commit is contained in:
tomaszduda23 2024-08-13 21:53:42 +02:00 committed by GitHub
parent b082a64d32
commit 9663b7d67c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -104,7 +104,6 @@ template<typename T> class optional { // NOLINT
has_value_ = true;
}
private:
bool has_value_{false}; // NOLINT
value_type value_; // NOLINT
};