diff options
author | Reid Spencer <reid@x10sys.com> | 2007-08-05 20:06:04 +0000 |
---|---|---|
committer | Reid Spencer <reid@x10sys.com> | 2007-08-05 20:06:04 +0000 |
commit | 37c7cea4847c32beb300b32e46db4805dfe716fa (patch) | |
tree | 5831fafbe745d7f588731089d6b26c6468e315b9 /include/llvm/Bitcode | |
parent | a7353d3b68d0d49806956e8837827f7e231116ee (diff) | |
download | external_llvm-37c7cea4847c32beb300b32e46db4805dfe716fa.zip external_llvm-37c7cea4847c32beb300b32e46db4805dfe716fa.tar.gz external_llvm-37c7cea4847c32beb300b32e46db4805dfe716fa.tar.bz2 |
Fix minor doxygen nits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r-- | include/llvm/Bitcode/Archive.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/llvm/Bitcode/Archive.h b/include/llvm/Bitcode/Archive.h index 980bd07..39ad5eb 100644 --- a/include/llvm/Bitcode/Archive.h +++ b/include/llvm/Bitcode/Archive.h @@ -463,6 +463,8 @@ class Archive { /// into memory. Archive(const sys::Path& filename); + /// @param data The symbol table data to be parsed + /// @param len The length of the symbol table data /// @param error Set to address of a std::string to get error messages /// @returns false on error /// @brief Parse the symbol table at \p data. @@ -476,17 +478,17 @@ class Archive { std::string* error ///< Optional error message catcher ); - /// @param error Set to address of a std::string to get error messages + /// @param ErrMessage Set to address of a std::string to get error messages /// @returns false on error /// @brief Check that the archive signature is correct bool checkSignature(std::string* ErrMessage); - /// @param error Set to address of a std::string to get error messages + /// @param ErrMessage Set to address of a std::string to get error messages /// @returns false on error /// @brief Load the entire archive. bool loadArchive(std::string* ErrMessage); - /// @param error Set to address of a std::string to get error messages + /// @param ErrMessage Set to address of a std::string to get error messages /// @returns false on error /// @brief Load just the symbol table. bool loadSymbolTable(std::string* ErrMessage); |