ccls/src/clang_utils.h

17 lines
334 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, const std::string& path);
2017-05-21 03:46:15 +00:00
// Returns the absolute path to |file|.
std::string FileName(CXFile file);