forked fromglynos/cpp-netlib
- Notifications
You must be signed in to change notification settings - Fork425
Commitdd69300
committed
Remove user-declared constructors for response class
Removed the following defaulted constructors:* Default Constructor* Copy Constructor* Move ConstructorThe defaulted move constructor prevents implicit declaration ofthe copy assignment operator, which results in compiler errorssince std::promise requires it.All 3 user-declared methods removed here are implicitly declared bythe compiler anyway, so no need to default them in the first place.Relates to#5471 parent769e5c6 commitdd69300
1 file changed
+0
-17
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | 63 | | |
81 | 64 | | |
82 | 65 | | |
| |||
0 commit comments
Comments
(0)