mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-27 01:51:57 +00:00
11 lines
222 B
C
11 lines
222 B
C
|
#ifndef UTILITY_H_
|
||
|
#define UTILITY_H_
|
||
|
#include <clang-c/Index.h>
|
||
|
#include <string>
|
||
|
|
||
|
namespace clang {
|
||
|
std::string to_string(CXString cx_string);
|
||
|
std::string to_string(CXCursorKind cursor_kind);
|
||
|
}
|
||
|
|
||
|
#endif // UTILITY_H_
|