summaryrefslogtreecommitdiff
path: root/src/mongo/base/concept/convertible_to.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-26025 Smart pointer with clone on copyADAM David Alan Martin2017-03-301-0/+41
| | | | | | | This clonable pointer works like a unique_ptr, but upon copy it invokes a customizable cloning function. A `clone` member function is used by default. There exist several customization points.
* Revert "SERVER-26025 Smart pointer with clone on copy"Randolph Tan2017-03-221-14/+0
| | | | This reverts commit 5d141bce7219aeb34d3de8cfae68d643bf9a3a16.
* SERVER-26025 Smart pointer with clone on copyADAM David Alan Martin2017-03-221-0/+14
This clonable pointer works like a unique_ptr, but upon copy it invokes a customizable cloning function. A `clone` member function is used by default. There exist several customization points.