summaryrefslogtreecommitdiff
path: root/src/mongo/base/concept
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-278-101/+100
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-138-8/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-228-120/+136
|
* SERVER-26025 Smart pointer with clone on copyADAM David Alan Martin2017-03-309-0/+400
| | | | | | | 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-229-184/+0
| | | | This reverts commit 5d141bce7219aeb34d3de8cfae68d643bf9a3a16.
* SERVER-26025 Smart pointer with clone on copyADAM David Alan Martin2017-03-229-0/+184
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.