mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-25 00:55:08 +00:00
12 lines
217 B
C
12 lines
217 B
C
|
#pragma once
|
||
|
|
||
|
#include "language_server_api.h"
|
||
|
|
||
|
#include <clang-c/Index.h>
|
||
|
|
||
|
#include <vector>
|
||
|
#include <optional.h>
|
||
|
|
||
|
using namespace std::experimental;
|
||
|
|
||
|
optional<lsDiagnostic> BuildDiagnostic(CXDiagnostic diagnostic);
|