diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-06 01:18:38 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-06 01:18:38 +0000 |
commit | d29245ce5ed1f6aee6f056c85ba77b009f11ee83 (patch) | |
tree | e18257ecbf225959fb5e1b28adf20247dd36dfec | |
parent | 53d6ded0edb70b04430cdaf7d02602799b4d4b07 (diff) |
[libclang] Fix the comments, as suggested by Dmitri.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165353 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang-c/Index.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 1b350d8770..a255d9c918 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -3220,43 +3220,44 @@ typedef void *CXModule; CINDEX_LINKAGE CXModule clang_Cursor_getModule(CXCursor C); /** - * \param Module object. + * \param Module a module object. * * \returns the parent of a sub-module or NULL if the given module is top-level, * e.g. for 'std.vector' it will return the 'std' module. */ -CINDEX_LINKAGE CXModule clang_Module_getParent(CXModule); +CINDEX_LINKAGE CXModule clang_Module_getParent(CXModule Module); /** - * \param Module object. + * \param Module a module object. * * \returns the name of the module, e.g. for the 'std.vector' sub-module it * will return "vector". */ -CINDEX_LINKAGE CXString clang_Module_getName(CXModule); +CINDEX_LINKAGE CXString clang_Module_getName(CXModule Module); /** - * \param Module object. + * \param Module a module object. * * \returns the full name of the module, e.g. "std.vector". */ -CINDEX_LINKAGE CXString clang_Module_getFullName(CXModule); +CINDEX_LINKAGE CXString clang_Module_getFullName(CXModule Module); /** - * \param Module object. + * \param Module a module object. * * \returns the number of top level headers associated with this module. */ -CINDEX_LINKAGE unsigned clang_Module_getNumTopLevelHeaders(CXModule); +CINDEX_LINKAGE unsigned clang_Module_getNumTopLevelHeaders(CXModule Module); /** - * \param Module object. + * \param Module a module object. * * \param Index top level header index (zero-based). * * \returns the specified top level header associated with the module. */ -CINDEX_LINKAGE CXFile clang_Module_getTopLevelHeader(CXModule, unsigned Index); +CINDEX_LINKAGE +CXFile clang_Module_getTopLevelHeader(CXModule Module, unsigned Index); /** * @} |