diff --git a/include/qutexAcquisitionHistoryTracker.h b/include/qutexAcquisitionHistoryTracker.h index 48da2e0..bcefff9 100644 --- a/include/qutexAcquisitionHistoryTracker.h +++ b/include/qutexAcquisitionHistoryTracker.h @@ -88,11 +88,14 @@ public: /** * @brief Remove a continuation from the acquisition history - * @param continuation Shared pointer to the AsynchronousContinuationChainLink - * to remove + * + * @param continuation Shared pointer to the + * AsynchronousContinuationChainLink to remove * @return true if the continuation was found and removed, false if not found */ - bool remove(std::shared_ptr &continuation) + bool remove( + std::shared_ptr &continuation + ) { auto it = acquisitionHistory.find(continuation); if (it != acquisitionHistory.end()) {