File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ template <typename... SPSArgTs> struct WFSPSHelper {
37
37
return Arg;
38
38
}
39
39
40
- static SPSSerializableError toSerializable (Error Err) noexcept {
40
+ static SPSSerializableError toSerializable (Error Err) {
41
41
return SPSSerializableError (std::move (Err));
42
42
}
43
43
44
44
template <typename T>
45
- static SPSSerializableExpected<T> toSerializable (Expected<T> Arg) noexcept {
45
+ static SPSSerializableExpected<T> toSerializable (Expected<T> Arg) {
46
46
return SPSSerializableExpected<T>(std::move (Arg));
47
47
}
48
48
@@ -61,12 +61,12 @@ template <typename... SPSArgTs> struct WFSPSHelper {
61
61
return std::forward<T>(Arg);
62
62
}
63
63
64
- static Error fromSerializable (SPSSerializableError Err) noexcept {
64
+ static Error fromSerializable (SPSSerializableError Err) {
65
65
return Err.toError ();
66
66
}
67
67
68
68
template <typename T>
69
- static Expected<T> fromSerializable (SPSSerializableExpected<T> Val) noexcept {
69
+ static Expected<T> fromSerializable (SPSSerializableExpected<T> Val) {
70
70
return Val.toExpected ();
71
71
}
72
72
You can’t perform that action at this time.
0 commit comments