Commit 817ceb09 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

easy: define away easy_events() for non-debug builds

parent 1a911f7e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -712,6 +712,9 @@ static CURLcode easy_events(CURLM *multi)

  return wait_or_timeout(multi, &evs);
}
#else /* CURLDEBUG */
/* when not built with debug, this function doesn't exist */
#define easy_events(x) CURLE_NOT_BUILT_IN
#endif

static CURLcode easy_transfer(CURLM *multi)