LLDB mainline
BugReporter.cpp
Go to the documentation of this file.
1//===----------------------------------------------------------------------===//
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-exception
6//
7//===----------------------------------------------------------------------===//
8
10
11llvm::ArrayRef<llvm::StringRef> lldb_private::GetBugReportQuestions() {
12 static constexpr llvm::StringRef g_questions[] = {
13 "What were you doing?",
14 "What did you expect to happen?",
15 "What happened instead?",
16 };
17 return g_questions;
18}
llvm::ArrayRef< llvm::StringRef > GetBugReportQuestions()
The questions only the person filing the report can answer.