X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FAtomicLinkedList.h;h=4d1d8503452ad6683be6a8fc479a4f343bf16d9f;hb=4c6781bf95a7e5e0af802e162f4cb3b310203bf4;hp=3ee27bbb1e3befbdf0806f93d1c487015c4367d4;hpb=f54a0bdb714272ea06386dddb859258ecfacc754;p=folly.git diff --git a/folly/AtomicLinkedList.h b/folly/AtomicLinkedList.h index 3ee27bbb..4d1d8503 100644 --- a/folly/AtomicLinkedList.h +++ b/folly/AtomicLinkedList.h @@ -54,7 +54,7 @@ class AtomicLinkedList { * after the call. */ bool insertHead(T t) { - auto wrapper = folly::make_unique(std::move(t)); + auto wrapper = std::make_unique(std::move(t)); return list_.insertHead(wrapper.release()); }