brintos

brintos / llvm-project-archived public Read only

0
0
Text · 894 B · 2e7cb19 Raw
26 lines · cpp
1//===-- BreakpointPrecondition.cpp ----------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#include "lldb/Breakpoint/BreakpointPrecondition.h"10#include "lldb/Utility/Status.h"11 12using namespace lldb_private;13 14bool BreakpointPrecondition::EvaluatePrecondition(15    StoppointCallbackContext &context) {16  return false;17}18 19void BreakpointPrecondition::GetDescription(Stream &stream,20                                            lldb::DescriptionLevel level) {}21 22Status BreakpointPrecondition::ConfigurePrecondition(Args &args) {23  return Status::FromErrorString(24      "Base breakpoint precondition has no options.");25}26