The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
172 views

Why can't intrusive_ptr and shared_ptr be used with boost::intrusive containers?

The boost::intrusive documentation describes how you can use smart pointers with intrusive containers but then says you can't use the smart pointers you'd be most likely to use, "It must have the same ...
1
vote
2answers
80 views

Which container to use for String-Interning

My goal is to do string-interning. For this I am looking for a hashed container class that can do the following: allocate only one block of memory per node different userdata size per node The ...
0
votes
3answers
249 views

C++ circular dependency with intrusive linked list

I've implemented this intrusive linked list: template <class Entry> struct LinkedListNode { Entry *next; Entry *prev; }; template <class Entry, LinkedListNode<Entry> ...
0
votes
1answer
72 views

member hook implementation for splay_multiset in Boost::Intrusive

I was implementing boost::intrusive for one of my project on visual C++ 2008 and i stumbled upon a problem. i am using splay hooks for splay_multiset containers. I have defined splay hook publically ...
2
votes
2answers
362 views

Using BOOST_FOREACH with a constant intrusive list

Consider the following code to iterate over an intrusive list using the BOOST_FOREACH macro: #include <boost/foreach.hpp> #include <boost/intrusive/list.hpp> typedef ...
3
votes
1answer
354 views

Boost Intrusive unordered_set broken in 1.48 with GCC in C++11 mode

Boost Intrusive's unordered_set is broken if you do a vanilla install of Fedora 17 which comes with GCC 4.7 and Boost 1.48, and use C++11 mode. On Fedora 16, which comes with GCC 4.6.2 and Boost ...
10
votes
2answers
612 views

C++ STL Containers are unusable without exceptions, what can we do about this?

The supposed ethos of C++ is "what you use, you pay for". However, this can be quite debilitating due to exceptions and their pervasive use in the STL. Before anybody says "just turn exceptions on", ...
12
votes
3answers
427 views

C++ CRTP and accessing derived's nested typedefs from base

edit: I'll put a github link here when I am done altering my design for anyone who is interested. Background I'm replacing a boost::intrusive, intrusive_set, with my own implementation as 64-bit ...
1
vote
1answer
324 views

An intrusive list of unique_ptrs?

I have a program that is highly multi-threaded and it contains an intrusive linked list of objects. I need to pass off the objects in this list to several threads, but only 1 thread will ever own the ...
3
votes
6answers
706 views

How to make an intrusive tree class in C# use generics?

In C# I have an intrusive tree structure that looks like this: public abstract class Node { Container parent; Node nextNode; Node previousNode; public abstract class Container : Node ...
3
votes
3answers
473 views

Boost Intrusive List hook

What is the difference in a base hook and a member hook in Boost::Intrusive library and when is one better to use then the other? I've read the boost documentation, but its not that explanatory.
9
votes
2answers
2k views

Boost.Intrusive and unordered_map

I am looking to use an intrusive unordered_map. For some reason there is only an unordered_set in the library. There is also an intrusive hashtable but I'm not sure it has the same functunality, also ...