ccls/src/clang_utils.h

16 lines
304 B
C
Raw Normal View History

#pragma once
#include "language_server_api.h"
#include <clang-c/Index.h>
#include <vector>
#include <optional.h>
using namespace std::experimental;
optional<lsDiagnostic> BuildAndDisposeDiagnostic(CXDiagnostic diagnostic);
2017-05-21 03:46:15 +00:00
// Returns the absolute path to |file|.
std::string FileName(CXFile file);