Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2016-02-20 18:52:37 +0300
committerMikkel Krautz <mikkel@krautz.dk>2016-05-08 17:45:52 +0300
commit88a665313e1b037ded46828e46b645076b7d0df6 (patch)
tree408a15d7332e168932034824bb96cd85ed0641dc /src/murmur/MurmurGRPCImpl.h
parentcd6b532cfd82524cb9a1b87fbe1da4e7a63429e6 (diff)
grpc: use single-line doxygen-style comments in RPCSingleStreamCall top-level comment.
Diffstat (limited to 'src/murmur/MurmurGRPCImpl.h')
-rw-r--r--src/murmur/MurmurGRPCImpl.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/murmur/MurmurGRPCImpl.h b/src/murmur/MurmurGRPCImpl.h
index 4ddc3811b..5f1103615 100644
--- a/src/murmur/MurmurGRPCImpl.h
+++ b/src/murmur/MurmurGRPCImpl.h
@@ -185,13 +185,11 @@ public:
}
};
-/*
- * Base for "single-stream" RPC methods.
- *
- * The helper method "write" automatically queues writes to the stream. Without
- * write queuing, the grpc crashes if a stream.Write is called before a
- * previous stream.Write completes.
- */
+/// Base for "single-stream" RPC methods.
+///
+/// The helper method "write" automatically queues writes to the stream. Without
+/// write queuing, the grpc crashes if a stream.Write is called before a
+/// previous stream.Write completes.
template <class InType, class OutType>
class RPCSingleStreamCall : public RPCCall {
QMutex m_writeLock;