Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/cpr/session.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ class Session : public std::enable_shared_from_this<Session> {

void AddInterceptor(const std::shared_ptr<Interceptor>& pinterceptor);

std::shared_ptr<Session> GetSharedPtrFromThis();

private:
// Interceptors should be able to call the private proceed() function
friend Interceptor;
Expand Down Expand Up @@ -292,7 +294,6 @@ class Session : public std::enable_shared_from_this<Session> {
**/
void prepareCommonDownload();
void prepareHeader();
std::shared_ptr<Session> GetSharedPtrFromThis();
CURLcode DoEasyPerform();
void prepareBodyPayloadOrMultipart() const;
/**
Expand Down
Loading