forked from OSchip/llvm-project
The FixItList typedef should have been inside "class ClangDiagnostic".
llvm-svn: 265496
This commit is contained in:
parent
b29c42f9eb
commit
bbadf2b7e5
|
@ -22,11 +22,12 @@
|
|||
namespace lldb_private
|
||||
{
|
||||
|
||||
typedef std::vector<clang::FixItHint> FixItList;
|
||||
|
||||
class ClangDiagnostic : public Diagnostic
|
||||
{
|
||||
public:
|
||||
typedef std::vector<clang::FixItHint> FixItList;
|
||||
|
||||
static inline bool classof(const ClangDiagnostic *) { return true; }
|
||||
static inline bool classof(const Diagnostic *diag) {
|
||||
return diag->getKind() == eDiagnosticOriginClang;
|
||||
|
|
Loading…
Reference in New Issue