File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -111,12 +111,8 @@ \section{Global Preparation}
111111When the program no longer uses cURLpp, it should call \verb +cURLpp::terminate() +,
112112which is the opposite of the init call. It will then do the operations needed
113113to cleanup the resources that the \verb +cURLpp::initialize() + call initialized.
114-
115114Repeated calls to \verb +cURLpp::initialize() + and \verb +cURLpp::terminate() + must not be made.
116- They must only be called once each. The cURLpp::Cleanup class can be used to do this. It will
117- call the \verb +cURLpp::initialize() + function in its constructor and \verb +cURLpp::terminate() +
118- in its destructor. Check example01.cpp in the examples/ directory of
119- the source distribution for an example.
115+ They must only be called once each.
120116
121117\section {Handle the Easy cURLpp }
122118
@@ -268,8 +264,6 @@ \subsubsection{cURLpp::Options}
268264{
269265 try
270266 {
271- cURLpp::Cleanup myCleanup;
272-
273267 // Creation of the URL option.
274268 cURLpp::Options::Url myUrl(
275269 std::string("http://example.com"));
You can’t perform that action at this time.
0 commit comments