diff --git a/src/RoL/threaded/queue.hpp b/src/RoL/threaded/queue.hpp index 9eb32fc..93fd5d5 100644 --- a/src/RoL/threaded/queue.hpp +++ b/src/RoL/threaded/queue.hpp @@ -5,7 +5,7 @@ #include #include -/*** +/** * \class concurrent_queue * * \brief Wraps around std::queue and as name implies, allows concurrent access @@ -15,7 +15,7 @@ template class concurrent_queue { - /*** + /** * \var q_ * \brief Underlying `std::queue`, protected by a mutex, `mtx_`. */ @@ -24,7 +24,7 @@ class concurrent_queue public: - /*** + /** * \fn concurrent_queue() * * Default constructor. @@ -36,7 +36,7 @@ class concurrent_queue concurrent_queue &operator=(const concurrent_queue &) = delete; concurrent_queue &operator=(concurrent_queue &&) = delete; - /*** + /** * \fn front() * \returns `&` to first item. * @@ -45,7 +45,7 @@ class concurrent_queue T &front(); const T &front() const; - /*** + /** * \fn back() * \returns `&` to last item. * @@ -54,24 +54,24 @@ class concurrent_queue T &back(); const T &back() const; - /*** + /** * \fn empty() * \returns `true` if queue empty, `false` otherwise. */ bool empty() const; - /*** + /** * \fn size() * \returns number of elements in the queue. */ std::size_t size() const; - /*** + /** * \fn push(T &&) * \brief Push an item onto the stack, doing an `emplace_back()` in the background. */ void push(T &&); - /*** + /** * \fn pop() * \brief Pops the first element of the queue, pointed to by `front()`. */ diff --git a/src/test/test_parse.cpp b/src/test/test_parse.cpp index 7a159ea..1acfacf 100644 --- a/src/test/test_parse.cpp +++ b/src/test/test_parse.cpp @@ -7,7 +7,7 @@ #include using namespace parse; -/*** +/** * \file test_parse.cpp * \brief Sample test unit for the parsing utilies. Validates parsing output. * \note Tests are to be run on the host.