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 | ba30d925041fad4acf0d2ecc04748b2fd4ef29e5 (patch) | |
tree | b778d674ae320433b8329a552899a60c67ac3bd7 | |
parent | 6a80e7564fe54af916058867c2c3783e2e096d68 (diff) | |
download | llvm-ba30d925041fad4acf0d2ecc04748b2fd4ef29e5.zip llvm-ba30d925041fad4acf0d2ecc04748b2fd4ef29e5.tar.gz llvm-ba30d925041fad4acf0d2ecc04748b2fd4ef29e5.tar.bz2 |
[libclang] Fix the comments, as suggested by Dmitri.
llvm-svn: 165353
-rw-r--r-- | clang/include/clang-c/Index.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 1b350d8..a255d9c 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/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); /** * @} |