本文介绍了如何使用clang libtooling获取#includes的源位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么方法可以通过文件<$ c获取文件中每个 #include
的 clang :: SourceLocation
$ c> clang :: FileID 或 clang :: FileEntry
或其他内容?
Is there any way to get clang::SourceLocation
for every #include
in file by its clang::FileID
or clang::FileEntry
or something?
推荐答案
使用源管理器的GetFiledLoc函数(将fileid作为参数)怎么样?
What about using source manager's GetIncludedLoc function which takes fileid as parameter.
SourceManager.GetIncludedLoc(fileid)
SourceManager.GetIncludedLoc(fileid)
这篇关于如何使用clang libtooling获取#includes的源位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!