mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
11 lines
191 B
C++
11 lines
191 B
C++
#pragma once
|
|
|
|
#include <clang-c/Index.h>
|
|
#include <string>
|
|
|
|
namespace clang {
|
|
|
|
std::string ToString(CXString cx_string);
|
|
std::string ToString(CXCursorKind cursor_kind);
|
|
|
|
} // namespace clang
|