diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-03-01 12:32:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-03-01 12:32:02 +0200 |
commit | c55878df67c400d9ac940ee2d8dbd6e922af5ac3 (patch) | |
tree | 4301fc0f7323294ac60b8d464769667ea0efe7b9 /relationship/driver.cxx | |
parent | 8994eaab313bdec57ba38032f8adf9e05cc6d166 (diff) |
Resolve tr1/std::shared_ptr ambiguities
Diffstat (limited to 'relationship/driver.cxx')
-rw-r--r-- | relationship/driver.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/relationship/driver.cxx b/relationship/driver.cxx index afd0b7f..9af06a2 100644 --- a/relationship/driver.cxx +++ b/relationship/driver.cxx @@ -26,7 +26,7 @@ print (const employee& e) for (projects::const_iterator i (ps.begin ()); i != ps.end (); ++i) { - shared_ptr<project> p (*i); + tr1::shared_ptr<project> p (*i); cout << " project: " << p->name () << endl; } @@ -36,6 +36,8 @@ print (const employee& e) int main (int argc, char* argv[]) { + using tr1::shared_ptr; + try { auto_ptr<database> db (create_database (argc, argv)); |