================ @@ -0,0 +1,53 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_BREAKPOINT_STOPCONDITION_H +#define LLDB_BREAKPOINT_STOPCONDITION_H + +#include "lldb/lldb-private.h" + +namespace lldb_private { + +class StopCondition { +public: + StopCondition(std::string text = "", + lldb::LanguageType language = lldb::eLanguageTypeUnknown) + : m_language(language) { + SetText(text); + } + + operator bool() const { return !m_text.empty(); } ---------------- Michael137 wrote:
```suggestion explicit operator bool() const { return !m_text.empty(); } ``` ? https://github.com/llvm/llvm-project/pull/147603 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits