From d346e6645ab2db9118f7307cac2c1c506b025bbe Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Fri, 29 Nov 2013 21:10:45 -0800 Subject: [PATCH] Tidy doc comments --- beast/intrusive/LockFreeStack.h | 1 + 1 file changed, 1 insertion(+) diff --git a/beast/intrusive/LockFreeStack.h b/beast/intrusive/LockFreeStack.h index 9d64662e5..7de727fd9 100644 --- a/beast/intrusive/LockFreeStack.h +++ b/beast/intrusive/LockFreeStack.h @@ -199,6 +199,7 @@ public: @return `true` if the stack was previously empty. If multiple threads are attempting to push, only one will receive `true`. */ + // VFALCO NOTE Fix this, shouldn't it be a reference like intrusive list? bool push_front (Node* node) { bool first;