Age | Commit message (Collapse) | Author |
|
|
|
Custom deleters of ScopedPtr are not currently fully conforming to
C++11's support for custom deleters in std::unique_ptr for the
sake of simplicity of implementation. Unlike in the standard
library, plain functions and lvalue references are not supported,
nor may custom deleters be passed to the constructor at runtime.
This can be improved in the future, if necessary, by doing what
standard library implementations usually do and creating a Pair
class that uses the Empty Base Optimization idiom to avoid extra
storage overhead of the deleter instance when it is not needed, as
in typical standard library implementations, plus some additional
type traits to support the necessary metaprogramming for the
different type overloads.
|
|
The new test verifies that a given object is indeed deleted after
the smart pointer leaves scope.
svn-id: r48358
|
|
possible; also made them comply a bit more to our code formatting guideline
svn-id: r40722
|
|
svn-id: r35648
|
|
svn-id: r33400
|
|
svn-id: r31329
|
|
SharedPtr.
- Removed two failing comparison tests of SharedPtr in our test suite (those were not supported according to our documentation anyway)
svn-id: r31312
|
|
added two test cases for the comparision operators, which currently fail
svn-id: r31299
|
|
List".
Unlike the patch on the tracker this commit includes documentation for SharedPtr.
svn-id: r31287
|