diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:34 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:34 +0000 |
commit | 9d4c8f671af479cba90e1db2f68d9abf9daaa4a4 (patch) | |
tree | a4df483b58f0fef7c23e1240a72f7951a16fd925 /apt-pkg/orderlist.h | |
parent | e5054186e69880d24528092c2f8a9dd3023224f8 (diff) |
Force-LoopBreak
Author: jgg
Date: 1999-08-12 05:59:47 GMT
Force-LoopBreak
Diffstat (limited to 'apt-pkg/orderlist.h')
-rw-r--r-- | apt-pkg/orderlist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/orderlist.h b/apt-pkg/orderlist.h index f15db4ce6..7e1b8efbc 100644 --- a/apt-pkg/orderlist.h +++ b/apt-pkg/orderlist.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: orderlist.h,v 1.6 1999/08/03 05:19:41 jgg Exp $ +// $Id: orderlist.h,v 1.7 1999/08/12 05:59:54 jgg Exp $ /* ###################################################################### Order List - Represents and Manipulates an ordered list of packages. @@ -88,7 +88,7 @@ class pkgOrderList enum Flags {Added = (1 << 0), AddPending = (1 << 1), Immediate = (1 << 2), Loop = (1 << 3), UnPacked = (1 << 4), Configured = (1 << 5), - Removed = (1 << 6), + Removed = (1 << 6), // Early Remove InList = (1 << 7), States = (UnPacked | Configured | Removed)}; @@ -98,7 +98,7 @@ class pkgOrderList void Flag(PkgIterator Pkg,unsigned long State, unsigned long F) {Flags[Pkg->ID] = (Flags[Pkg->ID] & (~F)) | State;}; inline void Flag(PkgIterator Pkg,unsigned long F) {Flags[Pkg->ID] |= F;}; inline void Flag(Package *Pkg,unsigned long F) {Flags[Pkg->ID] |= F;}; - inline bool IsNow(PkgIterator Pkg) {return (Flags[Pkg->ID] & States) == 0;}; + inline bool IsNow(PkgIterator Pkg) {return (Flags[Pkg->ID] & (States & (~Removed))) == 0;}; bool IsMissing(PkgIterator Pkg); void WipeFlags(unsigned long F); void SetFileList(string *FileList) {this->FileList = FileList;}; |