mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-24 16:45:07 +00:00
11 lines
203 B
C++
11 lines
203 B
C++
#pragma once
|
|
|
|
#include <clang/Basic/FileManager.h>
|
|
|
|
#include <string>
|
|
|
|
// Returns the absolute path to |file|.
|
|
std::string FileName(const clang::FileEntry& file);
|
|
|
|
const char* ClangBuiltinTypeName(int);
|