summaryrefslogtreecommitdiff
path: root/files.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-07 23:35:10 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-07 23:35:10 -0500
commitac6987f3aee8fedd52a08f8d6e9b7d5ad28559bb (patch)
treea0f63ebf397db67a1d8f7e41f2e4e89d03a57a4f /files.h
parent4d2b58c8fe92e7ce5007d2f15f046d33f37eedc2 (diff)
downloadcryptopp-git-ac6987f3aee8fedd52a08f8d6e9b7d5ad28559bb.tar.gz
Use \return and \throw consitently in the docs
Diffstat (limited to 'files.h')
-rw-r--r--files.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/files.h b/files.h
index 16fe46f2..8ff5dc85 100644
--- a/files.h
+++ b/files.h
@@ -55,11 +55,11 @@ public:
#endif
/// \brief Retrieves the internal stream
- /// \returns the internal stream pointer
+ /// \return the internal stream pointer
std::istream* GetStream() {return m_stream;}
/// \brief Retrieves the internal stream
- /// \returns the internal stream pointer
+ /// \return the internal stream pointer
const std::istream* GetStream() const {return m_stream;}
/// \brief Provides the number of bytes ready for retrieval
@@ -121,7 +121,7 @@ public:
#endif
/// \brief Retrieves the internal stream
- /// \returns the internal stream pointer
+ /// \return the internal stream pointer
std::istream* GetStream() {return m_store.GetStream();}
};
@@ -164,7 +164,7 @@ public:
#endif
/// \brief Retrieves the internal stream
- /// \returns the internal stream pointer
+ /// \return the internal stream pointer
std::ostream* GetStream() {return m_stream;}
void IsolatedInitialize(const NameValuePairs &parameters);