diff options
Diffstat (limited to 'src/OSSupport/GZipFile.h')
-rw-r--r-- | src/OSSupport/GZipFile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/OSSupport/GZipFile.h b/src/OSSupport/GZipFile.h index dd4999339..9ce53ed26 100644 --- a/src/OSSupport/GZipFile.h +++ b/src/OSSupport/GZipFile.h @@ -17,9 +17,9 @@ namespace GZipFile { - /** Reads the rest of the file and returns the decompressed contents. */ - Compression::Result ReadRestOfFile(const std::string & a_FileName); +/** Reads the rest of the file and returns the decompressed contents. */ +Compression::Result ReadRestOfFile(const std::string & a_FileName); - /** Writes a_Contents into file, compressing it along the way. */ - void Write(const std::string & a_FileName, ContiguousByteBufferView a_Contents); -} ; +/** Writes a_Contents into file, compressing it along the way. */ +void Write(const std::string & a_FileName, ContiguousByteBufferView a_Contents); +}; // namespace GZipFile |