Skip to content

Commit 7ae5369

Browse files
authored
Update smf_control.hpp
1 parent 2d441c4 commit 7ae5369

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

smf_control.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
struct user_provided_t {
77
explicit user_provided_t() = default;
88
};
9-
constexpr user_provided_t user_provided{};
9+
inline constexpr user_provided_t user_provided{};
1010
1111
template<bool cond, class T> struct default_copy_ctor_if;
1212
template<bool cond, class T> struct default_move_ctor_if;
@@ -20,7 +20,7 @@
2020
struct user_provided_t {
2121
explicit user_provided_t() = default;
2222
};
23-
constexpr user_provided_t user_provided{};
23+
inline constexpr user_provided_t user_provided{};
2424

2525
// All the following class templates inherit from the template parameter T and
2626
// introduce T's constructors and assignment operators into their own scope

0 commit comments

Comments
 (0)