aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJohannes Schickel2013-01-26 19:36:12 +0100
committerJohannes Schickel2013-01-26 19:38:02 +0100
commit354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783 (patch)
tree11306ad6f1fcb7bd21f25dcf66209101cb9b5b45 /common
parentb4d0a8ba66e2c99949d1fa14d801c7de77db76ba (diff)
downloadscummvm-rg350-354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783.tar.gz
scummvm-rg350-354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783.tar.bz2
scummvm-rg350-354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783.zip
JANITORIAL: Use "End of anonymous namespace" as comment for anonymous namespaces.
Diffstat (limited to 'common')
-rw-r--r--common/stream.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/stream.cpp b/common/stream.cpp
index a240d4e790..57b1b8ba93 100644
--- a/common/stream.cpp
+++ b/common/stream.cpp
@@ -342,7 +342,7 @@ uint32 BufferedReadStream::read(void *dataPtr, uint32 dataSize) {
return alreadyRead + dataSize;
}
-} // End of nameless namespace
+} // End of anonymous namespace
ReadStream *wrapBufferedReadStream(ReadStream *parentStream, uint32 bufSize, DisposeAfterUse::Flag disposeParentStream) {
@@ -400,7 +400,7 @@ bool BufferedSeekableReadStream::seek(int32 offset, int whence) {
return true;
}
-} // End of nameless namespace
+} // End of anonymous namespace
SeekableReadStream *wrapBufferedSeekableReadStream(SeekableReadStream *parentStream, uint32 bufSize, DisposeAfterUse::Flag disposeParentStream) {
if (parentStream)
@@ -482,7 +482,7 @@ public:
};
-} // End of nameless namespace
+} // End of anonymous namespace
WriteStream *wrapBufferedWriteStream(WriteStream *parentStream, uint32 bufSize) {
if (parentStream)