X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FConcurrentSkipList.h;h=620446f94fcce7680679a0d44b3c69033a370424;hb=03e99d2e90996a2a424a20b1a99c90d245344a7e;hp=987aa094e4426018ee7e9bd2e359f00a7953659f;hpb=ce64f0f685111ac24c7a321ea56d0c3524621df1;p=folly.git diff --git a/folly/ConcurrentSkipList.h b/folly/ConcurrentSkipList.h index 987aa094..620446f9 100644 --- a/folly/ConcurrentSkipList.h +++ b/folly/ConcurrentSkipList.h @@ -769,7 +769,8 @@ class ConcurrentSkipList::Skipper { findInsertionPoint(preds_[lyr], lyr, data, preds_, succs_); if (foundLayer < 0) return false; - DCHECK(succs_[0] != nullptr) << "lyr=" << lyr << "; max_layer=" << max_layer; + DCHECK(succs_[0] != nullptr) << "lyr=" << lyr + << "; max_layer=" << max_layer; return !succs_[0]->markedForRemoval(); }