Add missing CINDEX_LINKAGE.

llvm-svn: 92827
This commit is contained in:
Daniel Dunbar 2010-01-06 06:51:48 +00:00
parent 2e728619f0
commit 143a5b9f3c
1 changed files with 5 additions and 4 deletions

View File

@ -344,11 +344,12 @@ typedef struct CXDeclExtent {
CXSourceLineColumn end;
} CXSourceExtent;
/* clang_getDeclExtent() returns the physical extent of a declaration. The beginning
* line/column pair points to the start of the first token in the declaration, and the
* ending line/column pair points the start of the last token in the declaration.
/* clang_getDeclExtent() returns the physical extent of a declaration. The
* beginning line/column pair points to the start of the first token in the
* declaration, and the ending line/column pair points the start of the last
* token in the declaration.
*/
CXSourceExtent clang_getDeclExtent(CXDecl);
CINDEX_LINKAGE CXSourceExtent clang_getDeclExtent(CXDecl);
/*
* CXCursor Operations.