Formattign

This commit is contained in:
2025-09-29 19:30:20 -04:00
parent 71564b4d83
commit 21da27649e
+6 -3
View File
@@ -88,11 +88,14 @@ public:
/** /**
* @brief Remove a continuation from the acquisition history * @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 * @return true if the continuation was found and removed, false if not found
*/ */
bool remove(std::shared_ptr<AsynchronousContinuationChainLink> &continuation) bool remove(
std::shared_ptr<AsynchronousContinuationChainLink> &continuation
)
{ {
auto it = acquisitionHistory.find(continuation); auto it = acquisitionHistory.find(continuation);
if (it != acquisitionHistory.end()) { if (it != acquisitionHistory.end()) {