Commit b7e22236 authored by Dominik Charousset's avatar Dominik Charousset

Add copy ctor to save and load callbacks

parent b0b3e936
...@@ -33,6 +33,8 @@ struct load_callback_t : annotation { ...@@ -33,6 +33,8 @@ struct load_callback_t : annotation {
load_callback_t(load_callback_t&&) = default; load_callback_t(load_callback_t&&) = default;
load_callback_t(const load_callback_t&) = default;
F fun; F fun;
}; };
......
...@@ -33,6 +33,8 @@ struct save_callback_t : annotation { ...@@ -33,6 +33,8 @@ struct save_callback_t : annotation {
save_callback_t(save_callback_t&&) = default; save_callback_t(save_callback_t&&) = default;
save_callback_t(const save_callback_t&) = default;
F fun; F fun;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment