diff options
Diffstat (limited to 'brep/repository-details')
-rw-r--r-- | brep/repository-details | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/brep/repository-details b/brep/repository-details index a3008dc..fb41e32 100644 --- a/brep/repository-details +++ b/brep/repository-details @@ -5,10 +5,9 @@ #ifndef BREP_REPOSITORY_DETAILS #define BREP_REPOSITORY_DETAILS -#include <memory> // shared_ptr - #include <odb/forward.hxx> // database +#include <brep/types> #include <brep/module> #include <brep/options> @@ -24,8 +23,8 @@ namespace brep init (cli::scanner&); private: - std::shared_ptr<options::repository_details> options_; - std::shared_ptr<odb::core::database> db_; + shared_ptr<options::repository_details> options_; + shared_ptr<odb::core::database> db_; }; } |