File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ enum class [[nodiscard]] TaskState
127
127
128
128
struct [[nodiscard]] CompleteTaskInput
129
129
{
130
- explicit CompleteTaskInput () noexcept ;
130
+ explicit CompleteTaskInput () noexcept = default ;
131
131
explicit CompleteTaskInput (
132
132
response::IdType idArg,
133
133
std::optional<TaskState> testTaskStateArg,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ enum class [[nodiscard]] TaskState
60
60
61
61
struct [[nodiscard]] CompleteTaskInput
62
62
{
63
- explicit CompleteTaskInput () noexcept ;
63
+ explicit CompleteTaskInput () noexcept = default ;
64
64
explicit CompleteTaskInput (
65
65
response::IdType idArg,
66
66
std::optional<TaskState> testTaskStateArg,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ namespace nestedinput {
46
46
47
47
struct [[nodiscard]] InputA
48
48
{
49
- explicit InputA () noexcept ;
49
+ explicit InputA () noexcept = default ;
50
50
explicit InputA (
51
51
bool aArg) noexcept ;
52
52
InputA (const InputA& other);
@@ -60,7 +60,7 @@ struct [[nodiscard]] InputA
60
60
61
61
struct [[nodiscard]] InputB
62
62
{
63
- explicit InputB () noexcept ;
63
+ explicit InputB () noexcept = default ;
64
64
explicit InputB (
65
65
double bArg) noexcept ;
66
66
InputB (const InputB& other);
@@ -76,7 +76,7 @@ struct InputBC;
76
76
77
77
struct [[nodiscard]] InputABCD
78
78
{
79
- explicit InputABCD () noexcept ;
79
+ explicit InputABCD () noexcept = default ;
80
80
explicit InputABCD (
81
81
std::string dArg,
82
82
InputA aArg,
@@ -98,7 +98,7 @@ struct [[nodiscard]] InputABCD
98
98
99
99
struct [[nodiscard]] InputBC
100
100
{
101
- explicit InputBC () noexcept ;
101
+ explicit InputBC () noexcept = default ;
102
102
explicit InputBC (
103
103
response::IdType cArg,
104
104
InputB bArg) noexcept ;
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ static_assert(graphql::internal::MinorVersion == )cpp"
280
280
{
281
281
if (firstField)
282
282
{
283
- headerFile << R"cpp( ) noexcept;
283
+ headerFile << R"cpp( ) noexcept = default ;
284
284
explicit )cpp" << cppType
285
285
<< R"cpp( ()cpp" ;
286
286
}
You can’t perform that action at this time.
0 commit comments