diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-04-22 17:32:10 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-04-22 17:32:10 +0300 |
commit | 6aa21da22bf847c5a408f156626f9b5853a4acbe (patch) | |
tree | f5267e6137ec96e8e3f95778a4c0d507be8730aa /libbrep/package.hxx | |
parent | 7c61322166eb0eab77ee5fb10031bae616ecb192 (diff) |
Make buildable with GCC 4.9
Diffstat (limited to 'libbrep/package.hxx')
-rw-r--r-- | libbrep/package.hxx | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/libbrep/package.hxx b/libbrep/package.hxx index 3878530..45008d4 100644 --- a/libbrep/package.hxx +++ b/libbrep/package.hxx @@ -875,16 +875,17 @@ namespace brep id_column("") key_column("") value_column("") \ section(unused_section) - #pragma db member(build_config_bot_keys) \ - virtual(package_build_bot_keys_map) \ - after(build_config_auxiliaries) \ - get(odb::nested_get ( \ - brep::build_package_config_bot_keys (this.build_configs))) \ - set(brep::build_package_config_bot_keys< \ - lazy_shared_ptr<brep::public_key>> bks; \ - odb::nested_set (bks, std::move (?)); \ - move (bks).to_configs (this.build_configs)) \ - id_column("") key_column("") value_column("key_") value_not_null \ + #pragma db member(build_config_bot_keys) \ + virtual(package_build_bot_keys_map) \ + after(build_config_auxiliaries) \ + get(odb::nested_get ( \ + brep::build_package_config_bot_keys< \ + lazy_shared_ptr<brep::public_key>> (this.build_configs))) \ + set(brep::build_package_config_bot_keys< \ + lazy_shared_ptr<brep::public_key>> bks; \ + odb::nested_set (bks, std::move (?)); \ + move (bks).to_configs (this.build_configs)) \ + id_column("") key_column("") value_column("key_") value_not_null \ section(unused_section) #pragma db member(build_section) load(lazy) update(always) |