Fix C versus C++ linkage issue.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155842 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2012-04-30 19:33:45 +00:00
Родитель bbf66ca1da
Коммит 8eece46c54
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1152,6 +1152,7 @@ CXCompletionString clang_getCursorCompletionString(CXCursor cursor) {
}
return NULL;
}
} // end: extern C.
namespace {
struct OverridenCursorsPool {
@ -1175,7 +1176,8 @@ void *cxcursor::createOverridenCXCursorsPool() {
void cxcursor::disposeOverridenCXCursorsPool(void *pool) {
delete static_cast<OverridenCursorsPool*>(pool);
}
extern "C" {
void clang_getOverriddenCursors(CXCursor cursor,
CXCursor **overridden,
unsigned *num_overridden) {