From 1a11fe37115dedb973fa5f3bb7fe62de9d7bd615 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 15 Apr 2018 11:51:12 +0200 Subject: Workaround for few compiler warnings --- bdep/project.cxx | 2 +- bdep/project.hxx | 10 +++++----- bdep/wrapper-traits.hxx | 12 ++++++++++++ 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/bdep/project.cxx b/bdep/project.cxx index 64f82ca..6b5ee30 100644 --- a/bdep/project.cxx +++ b/bdep/project.cxx @@ -240,7 +240,7 @@ namespace bdep { // Name is to be extracted later. // - r.packages.push_back (move (package_location {"", *p.package})); + r.packages.push_back (package_location {"", *p.package}); } } diff --git a/bdep/project.hxx b/bdep/project.hxx index 9e68108..2b1894c 100644 --- a/bdep/project.hxx +++ b/bdep/project.hxx @@ -26,6 +26,8 @@ void assert (int); namespace bdep { + using optional_uint64_t = optional; + using optional_string = optional; using optional_dir_path = optional; @@ -70,12 +72,10 @@ namespace bdep // Since it is not always possible to derive a relative path, it is // optional. // - using id_type = optional; - - id_type id; - optional name; + optional_uint64_t id; + optional_string name; dir_path path; - optional relative_path; + optional_dir_path relative_path; bool default_; diff --git a/bdep/wrapper-traits.hxx b/bdep/wrapper-traits.hxx index 80b0cff..f4479f7 100644 --- a/bdep/wrapper-traits.hxx +++ b/bdep/wrapper-traits.hxx @@ -5,6 +5,8 @@ #ifndef BDEP_WRAPPER_TRAITS_HXX #define BDEP_WRAPPER_TRAITS_HXX +#include + #include #include @@ -54,6 +56,16 @@ namespace odb return const_cast (*o); } }; + + // These magic incantations are necessary to get portable generated + // code (without these because of the way GCC works uint64_t will be + // spelled as unsigned long which will break on Windows). + // + using optional_uint64_t = butl::optional; + using optional_uint64_traits = odb::wrapper_traits; +#ifdef ODB_COMPILER + template class odb::wrapper_traits; +#endif } #endif // BDEP_WRAPPER_TRAITS_HXX -- cgit v1.1