1
vote
1answer
67 views

make_shared how to use non default memory management

I have a question about the standard.. So let's say I have pools that manage my memory allocation.. I wanted to use shared_ptr and checked out the API.. As expected, I see that for shared_ptr I ...
1
vote
0answers
146 views

intrusive_ptr, shared_ptr performance tests

class X { public: std::string name; int age; long references; X(string n, int a) : references(0), name(n), age(a) {} }; inline void intrusive_ptr_add_ref(X* x){ ++x->references; } inline ...
8
votes
2answers
173 views

Does std::make_shared() use custom allocators?

Consider this code: #include <memory> #include <iostream> class SomeClass { public: SomeClass() { std::cout << "SomeClass()" << std::endl; } ...
0
votes
1answer
70 views

How do you get std::make_shared in XCode? [closed]

In a .cpp file in XCode, I have #include <memory> and I have used std::shared_ptr fine, but when I try std::make_shared<MyClass>(MyClass()), it complains: No matching function for call ...
1
vote
1answer
248 views

Can you allocate an array with something equivalent to make_shared?

buffer = new char[64]; buffer = std::make_shared<char>(char[64]); ??? Can you allocate memory to an array using make_shared<>()? I could do: buffer = std::make_shared<char>( new ...
0
votes
1answer
112 views

using make_shared with incomplete types

I am trying to switch my code to use make_shared<type>() but I have a lot of incomplete types (complete at the time of creation) and was wondering if there is anyway make_shared would work with ...
2
votes
2answers
952 views

Initializing shared_ptr member variable, new vs make_shared?

When initializing a shared_ptr member variable: // .h class Customer { public: Customer(); private: std::shared_ptr<OtherClass> something_; } // .cpp Customer(): something_(new ...
7
votes
4answers
3k views

Is make_shared really more efficient than new?

I was experimenting with shared_ptr and make_shared from C++11 and programmed a little toy example to see what is actually happening when calling make_shared. As infrastructure I was using llvm/clang ...
2
votes
1answer
195 views

Debuggable replacement for make_shared()

Using gcc 4.6.2, make_shared() gives a useless backtrace (apparently due to some rethrow) if a constructor throws an exception. I'm using make_shared() to save a bit of typing, but this is show ...
1
vote
1answer
996 views

Errors in std::make_shared() when trying to make shared_ptr?

(Using Visual Studio 2010) I'm trying to create a shared_ptr of an existing class in my project (class was written a decade before std::shared_ptr existed). This class takes a non-const pointer to ...
1
vote
2answers
2k views

make_shared create std::shared_ptr? gcc 4.6.2

i'm using gcc 4.6.2. I'm trying to push_back in a vector shared_ptr's. But gcc gives me everytime an error. Here my codelines: std::vector< std::tr1::shared_ptr<Process> > procs; ...
2
votes
1answer
433 views

'boost::make_shared' : ambiguous call to overloaded function

I've got the following class definition: class Portal { public: Portal( const vector<vec3> &vertices, shared_ptr<Sector> target ); ... }; Somewhere else, I want to create ...
9
votes
2answers
456 views

Question about boost::make_shared

In the boost doc of make_shared, it says: Besides convenience and style, such a function is also exception safe and considerably faster because it can use a single allocation for both the ...
1
vote
0answers
447 views

using boost::make_shared to return boost::shared_ptr

(SEE UPDATE/SOLUTION BELOW) Here's my pseudo: boost::shared_ptr<AbstractBaseClass> SomeFactory::createMsg(...){ boost::shared_ptr<AbstractBaseClass> msgPtr; switch(...) { case ...
6
votes
2answers
2k views

Can I use boost::make_shared with a private constructor?

Consider the following: class DirectoryIterator; namespace detail { class FileDataProxy; class DirectoryIteratorImpl { friend class DirectoryIterator; friend class ...