mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
12 lines
407 B
C++
12 lines
407 B
C++
#include "SourceRange.h"
|
|
|
|
/*
|
|
clang::SourceRange::SourceRange(clang::SourceLocation &start, clang::SourceLocation &end) {
|
|
cx_range = clang_getRange(start.cx_location, end.cx_location);
|
|
}
|
|
|
|
std::pair<clang::Offset, clang::Offset> clang::SourceRange::get_offsets() {
|
|
SourceLocation start(clang_getRangeStart(cx_range)), end(clang_getRangeEnd(cx_range));
|
|
return {start.get_offset(), end.get_offset()};
|
|
}
|
|
*/ |