1 parent 2d441c4 commit 7ae5369Copy full SHA for 7ae5369
1 file changed
smf_control.hpp
@@ -6,7 +6,7 @@
6
struct user_provided_t {
7
explicit user_provided_t() = default;
8
};
9
- constexpr user_provided_t user_provided{};
+ inline constexpr user_provided_t user_provided{};
10
11
template<bool cond, class T> struct default_copy_ctor_if;
12
template<bool cond, class T> struct default_move_ctor_if;
@@ -20,7 +20,7 @@
20
21
22
23
-constexpr user_provided_t user_provided{};
+inline constexpr user_provided_t user_provided{};
24
25
// All the following class templates inherit from the template parameter T and
26
// introduce T's constructors and assignment operators into their own scope
0 commit comments