(svn r17731) -Codechange: do not cache a boolean which states whether some other variable is not 0.

This commit is contained in:
rubidium
2009-10-06 21:12:35 +00:00
parent 31acc42b21
commit d52fa73bb1
2 changed files with 4 additions and 6 deletions

View File

@@ -163,7 +163,6 @@ public:
private:
List packets; ///< The cargo packets in this list
bool empty; ///< Cache for whether this list is empty or not
uint count; ///< Cache for the number of cargo entities
Money feeder_share; ///< Cache for the feeder share
uint days_in_transit; ///< Cache for the number of days in transit
@@ -197,7 +196,7 @@ public:
*/
FORCEINLINE bool Empty() const
{
return this->empty;
return this->count == 0;
}
/**
@@ -224,7 +223,7 @@ public:
*/
FORCEINLINE StationID Source() const
{
return this->Empty() ? INVALID_STATION : this->packets.front()->source;;
return this->Empty() ? INVALID_STATION : this->packets.front()->source;
}
/**