Skip to content

Commit 09d4fd3

Browse files
committed
Fix merge conflicts
1 parent 6c401d4 commit 09d4fd3

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

clang/tools/libclang/CIndex.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7642,15 +7642,9 @@ CXString clang_getTokenSpelling(CXTranslationUnit TU, CXToken CXTok) {
76427642
if (!CXXUnit)
76437643
return cxstring::createEmpty();
76447644

7645-
<<<<<<< HEAD
7646-
SourceLocation Loc = SourceLocation::getFromRawEncoding(CXTok.int_data[1]);
7647-
std::pair<FileID, unsigned> LocInfo =
7648-
CXXUnit->getSourceManager().getDecomposedSpellingLoc(Loc);
7649-
=======
76507645
SourceLocation Loc = SourceLocation::getFromRawEncoding32(
76517646
CXXUnit->getSourceManager(), CXTok.int_data[1]);
76527647
auto LocInfo = CXXUnit->getSourceManager().getDecomposedSpellingLoc(Loc);
7653-
>>>>>>> de04b79aa72e (64-bit source location)
76547648
bool Invalid = false;
76557649
StringRef Buffer =
76567650
CXXUnit->getSourceManager().getBufferData(LocInfo.first, &Invalid);

0 commit comments

Comments
 (0)