#include <string> #include <memory> using namespace std; int main(int argc, const char *argv[]) { shared_ptr<string> a(new string {}); shared_ptr<string> b(a); return 0; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15129 | zachwhaley | Add practice directory |