@@ -70,7 +70,6 @@ int main(int argc, const char **argv) {
70
70
curlcpp_traceback errors = error.get_traceback();
71
71
// Otherwise we could print the stack like this:
72
72
error.print_traceback();
73
- // Note that the printing the stack will erase it
74
73
}
75
74
return 0;
76
75
}
@@ -108,7 +107,6 @@ int main(int argc, const char **argv) {
108
107
curlcpp_traceback errors = error.get_traceback();
109
108
// Otherwise we could print the stack like this:
110
109
error.print_traceback();
111
- // Note that the printing the stack will erase it
112
110
}
113
111
114
112
// Retrieve information about curl current session.
@@ -162,7 +160,6 @@ int main(int argc, const char * argv[]) {
162
160
curlcpp_traceback errors = error.get_traceback();
163
161
// Otherwise we could print the stack like this:
164
162
error.print_traceback();
165
- // Note that the printing the stack will erase it
166
163
}
167
164
return 0;
168
165
}
@@ -210,7 +207,6 @@ int main(int argc, const char * argv[]) {
210
207
curlcpp_traceback errors = error.get_traceback();
211
208
// Otherwise we could print the stack like this:
212
209
error.print_traceback();
213
- // Note that the printing the stack will erase it
214
210
}
215
211
myfile.close();
216
212
return 0;
@@ -256,7 +252,6 @@ int main() {
256
252
curlcpp_traceback errors = error.get_traceback();
257
253
// Otherwise we could print the stack like this:
258
254
error.print_traceback();
259
- // Note that the printing the stack will erase it
260
255
}
261
256
// Let's print the stream content.
262
257
cout<<str.str()<<endl;
@@ -305,7 +300,6 @@ int main(int argc, const char * argv[]) {
305
300
curlcpp_traceback errors = error.get_traceback();
306
301
// Otherwise we could print the stack like this:
307
302
error.print_traceback();
308
- // Note that the printing the stack will erase it
309
303
}
310
304
311
305
// Creation of a sender. You should wait here using select to check if socket is ready to send.
0 commit comments