mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-16 21:58:08 +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_
|