summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-07 00:45:53 -0400
committerLioncash <mathew1800@gmail.com>2020-09-07 00:45:53 -0400
commit9652973db2c4e60e38afb19e66efc6e30e266600 (patch)
treedb9a1cdda05f8a1ffeeedf39f76660bef076b8a3
parent841b295ad033852753479ffcf49ce74c1662c099 (diff)
blocking_worker: Resolve -Wdocumentation warning
-rw-r--r--src/core/hle/service/sockets/blocking_worker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/sockets/blocking_worker.h b/src/core/hle/service/sockets/blocking_worker.h
index 31ef6b821..f2be6ce5c 100644
--- a/src/core/hle/service/sockets/blocking_worker.h
+++ b/src/core/hle/service/sockets/blocking_worker.h
@@ -29,7 +29,7 @@ namespace Service::Sockets {
* Worker abstraction to execute blocking calls on host without blocking the guest thread
*
* @tparam Service Service where the work is executed
- * @tparam ...Types Types of work to execute
+ * @tparam Types Types of work to execute
*/
template <class Service, class... Types>
class BlockingWorker {