This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/master by this push:
       new  5940864   Was looking at intrusive c++ stuff and noticed this line 
should be decrement
5940864 is described below

commit 5940864accb2ee2f7ec6df7c59c25a60503cf261
Author: Shane Adams <[email protected]>
AuthorDate: Tue Apr 4 09:33:38 2017 -0700

    Was looking at intrusive c++ stuff and noticed this line should be decrement
---
 lib/ts/IntrusiveDList.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ts/IntrusiveDList.h b/lib/ts/IntrusiveDList.h
index 273d3d6..ec3619e 100644
--- a/lib/ts/IntrusiveDList.h
+++ b/lib/ts/IntrusiveDList.h
@@ -163,7 +163,7 @@ public:
     self operator--(int)
     {
       self tmp(*this);
-      ++*this;
+      --*this;
       return tmp;
     }
     /// Inequality test.

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to