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
127127
128128struct [[nodiscard]] CompleteTaskInput
129129{
130- explicit CompleteTaskInput () noexcept ;
130+ explicit CompleteTaskInput () noexcept = default ;
131131 explicit CompleteTaskInput (
132132 response::IdType idArg,
133133 std::optional<TaskState> testTaskStateArg,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ enum class [[nodiscard]] TaskState
6060
6161struct [[nodiscard]] CompleteTaskInput
6262{
63- explicit CompleteTaskInput () noexcept ;
63+ explicit CompleteTaskInput () noexcept = default ;
6464 explicit CompleteTaskInput (
6565 response::IdType idArg,
6666 std::optional<TaskState> testTaskStateArg,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ namespace nestedinput {
4646
4747struct [[nodiscard]] InputA
4848{
49- explicit InputA () noexcept ;
49+ explicit InputA () noexcept = default ;
5050 explicit InputA (
5151 bool aArg) noexcept ;
5252 InputA (const InputA& other);
@@ -60,7 +60,7 @@ struct [[nodiscard]] InputA
6060
6161struct [[nodiscard]] InputB
6262{
63- explicit InputB () noexcept ;
63+ explicit InputB () noexcept = default ;
6464 explicit InputB (
6565 double bArg) noexcept ;
6666 InputB (const InputB& other);
@@ -76,7 +76,7 @@ struct InputBC;
7676
7777struct [[nodiscard]] InputABCD
7878{
79- explicit InputABCD () noexcept ;
79+ explicit InputABCD () noexcept = default ;
8080 explicit InputABCD (
8181 std::string dArg,
8282 InputA aArg,
@@ -98,7 +98,7 @@ struct [[nodiscard]] InputABCD
9898
9999struct [[nodiscard]] InputBC
100100{
101- explicit InputBC () noexcept ;
101+ explicit InputBC () noexcept = default ;
102102 explicit InputBC (
103103 response::IdType cArg,
104104 InputB bArg) noexcept ;
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ static_assert(graphql::internal::MinorVersion == )cpp"
280280 {
281281 if (firstField)
282282 {
283- headerFile << R"cpp( ) noexcept;
283+ headerFile << R"cpp( ) noexcept = default ;
284284 explicit )cpp" << cppType
285285 << R"cpp( ()cpp" ;
286286 }
You can’t perform that action at this time.
0 commit comments