cxx-benchmarks/test-copy-shared-ptr.cpp

9 lines
172 B
C++
Raw Permalink Normal View History

2014-07-19 13:35:25 +00:00
#include <memory>
void copy_ptr(std::shared_ptr<int>& a, std::shared_ptr<int> const& b);
void move_ptr(std::shared_ptr<int>& a, std::shared_ptr<int>& b);
int main() {
}