diff options
author | Julian Andres Klode <jak@debian.org> | 2020-02-26 14:51:05 +0000 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2020-02-26 14:51:05 +0000 |
commit | a096b580694cb36f29cdbce8f1db797a08e36709 (patch) | |
tree | 8a1bf6106868761042c80e04fdeff1077779ac18 /apt-pkg/acquire.h | |
parent | b31040e9c1441a2a7296ce3ff12f5052fc522366 (diff) | |
parent | da01dabb86396a1391f081fa54a806e2d7b62133 (diff) |
Merge branch 'pu/cleanups' into 'master'
Cleanup ABI - make stuff virtual, etc
See merge request apt-team/apt!106
Diffstat (limited to 'apt-pkg/acquire.h')
-rw-r--r-- | apt-pkg/acquire.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apt-pkg/acquire.h b/apt-pkg/acquire.h index d8fadce66..c71c01e2f 100644 --- a/apt-pkg/acquire.h +++ b/apt-pkg/acquire.h @@ -233,12 +233,7 @@ class pkgAcquire * * \return false if there is an error condition on one of the fds */ - bool RunFdsSane(fd_set *RSet,fd_set *WSet); - - // just here for compatibility, needs to be removed on the next - // ABI/API break. RunFdsSane() is what should be used as it - // returns if there is an error condition on one of the fds - virtual void RunFds(fd_set *RSet,fd_set *WSet); + virtual bool RunFds(fd_set *RSet,fd_set *WSet); /** \brief Check for idle queues with ready-to-fetch items. * |