mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
34 lines
781 B
C++
34 lines
781 B
C++
#if false
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <clang-c/Index.h>
|
|
#include "SourceRange.h"
|
|
|
|
namespace clang {
|
|
|
|
class Diagnostic {
|
|
public:
|
|
friend class TranslationUnit;
|
|
Diagnostic(CXTranslationUnit& cx_tu, CXDiagnostic& cx_diagnostic);
|
|
//class FixIt {
|
|
//public:
|
|
// FixIt(const std::string &source, const std::pair<clang::Offset, clang::Offset> &offsets) :
|
|
// source(source), offsets(offsets) {}
|
|
// std::string source;
|
|
// std::pair<clang::Offset, clang::Offset> offsets;
|
|
//};
|
|
|
|
static const std::string get_severity_spelling(unsigned severity);
|
|
|
|
unsigned severity;
|
|
std::string severity_spelling;
|
|
std::string spelling;
|
|
std::string path;
|
|
std::pair<clang::Offset, clang::Offset> offsets;
|
|
std::vector<FixIt> fix_its;
|
|
};
|
|
|
|
}
|
|
#endif |