ccls/libclangmm/Utility.h

11 lines
222 B
C
Raw Normal View History

2017-02-16 09:35:30 +00:00
#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_