File tree Expand file tree Collapse file tree 3 files changed +2
-42
lines changed Expand file tree Collapse file tree 3 files changed +2
-42
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ namespace curl {
92
92
* This method overloads the previous one allowing to specify an integer instead
93
93
* of a bool.
94
94
*/
95
- cookie *set_secure (const unsigned int ) NOEXCEPT ;
95
+ cookie *set_secure (const unsigned int );
96
96
/* *
97
97
* This method overloads the previous one allowing to specify a string to indicate
98
98
* whether the cookie is secure (with "secure" keyword) or not (empty string).
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ curl::cookie *curl::cookie::set_secure(const char *secure) NOEXCEPT {
105
105
}
106
106
107
107
// Implementation of set_secure method.
108
- curl::cookie *curl::cookie::set_secure (const unsigned int secure) NOEXCEPT {
108
+ curl::cookie *curl::cookie::set_secure (const unsigned int secure) {
109
109
if (secure == 0 ) {
110
110
this ->secure = false ;
111
111
} else if (secure == 1 ) {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments