X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FIntrusiveList.h;h=b9a9a5922eead622ab49935b303810eff81efff8;hb=b3aabafd2d5306d85105bcdb55b2c2422628ecaa;hp=0c799f1b11a659295d8be1d4947e3a59eb2fc3e1;hpb=ed8c80a0e0988e4ce687f51ca832a00e4a6b7930;p=folly.git diff --git a/folly/IntrusiveList.h b/folly/IntrusiveList.h index 0c799f1b..b9a9a592 100644 --- a/folly/IntrusiveList.h +++ b/folly/IntrusiveList.h @@ -61,7 +61,7 @@ using IntrusiveListHook = boost::intrusive::list_member_hook< * The elements stored in the list must contain an IntrusiveListHook member * variable. */ -template +template using IntrusiveList = boost::intrusive::list< T, boost::intrusive::member_hook, @@ -109,10 +109,10 @@ using SafeIntrusiveListHook = boost::intrusive::list_member_hook< * The elements stored in the list must contain an SafeIntrusiveListHook member * variable. */ -template +template using CountedIntrusiveList = boost::intrusive::list< T, boost::intrusive::member_hook, boost::intrusive::constant_time_size>; -} // folly +} // namespace folly