diff options
author | Johannes Schickel | 2013-01-26 19:36:12 +0100 |
---|---|---|
committer | Johannes Schickel | 2013-01-26 19:38:02 +0100 |
commit | 354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783 (patch) | |
tree | 11306ad6f1fcb7bd21f25dcf66209101cb9b5b45 | |
parent | b4d0a8ba66e2c99949d1fa14d801c7de77db76ba (diff) | |
download | scummvm-rg350-354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783.tar.gz scummvm-rg350-354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783.tar.bz2 scummvm-rg350-354aa0f5f34d33e32b6f35bcbf4e6f18e2bac783.zip |
JANITORIAL: Use "End of anonymous namespace" as comment for anonymous namespaces.
-rw-r--r-- | audio/mods/maxtrax.cpp | 2 | ||||
-rw-r--r-- | common/stream.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/audio/mods/maxtrax.cpp b/audio/mods/maxtrax.cpp index 0834b69d6f..a2d470cdbf 100644 --- a/audio/mods/maxtrax.cpp +++ b/audio/mods/maxtrax.cpp @@ -105,7 +105,7 @@ inline uint32 pow2Fixed(int32 val) { } #endif -} // End of namespace +} // End of anonymous namespace namespace Audio { 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) |