Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / devel / kyua-cli / patches / patch-utils_sqlite_database.hpp
blob213240dcc8c5b2e28ac82c09b642d2dc4b4d4840
1 $NetBSD$
3 --- utils/sqlite/database.hpp.orig 2013-05-06 07:46:57.000000000 +0000
4 +++ utils/sqlite/database.hpp
5 @@ -40,7 +40,13 @@ extern "C" {
8 #include <cstddef>
9 +#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
10 +#include <memory>
11 +using std::shared_ptr;
12 +#else
13 #include <tr1/memory>
14 +using std::tr1::shared_ptr;
15 +#endif
17 #include "utils/fs/path.hpp"
19 @@ -79,7 +85,7 @@ class database {
20 struct impl;
22 /// Pointer to the shared internal implementation.
23 - std::tr1::shared_ptr< impl > _pimpl;
24 + shared_ptr< impl > _pimpl;
26 friend class database_c_gate;
27 database(void*, const bool);