Fix minor doxygen nits.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40854 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2007-08-05 20:06:04 +00:00
parent 0713ca4255
commit 181b6c9cb5
13 changed files with 45 additions and 28 deletions

View File

@ -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);