1
0
Fork 0

(svn r14813) -Codechange: use uint instead of 'just' unsigned.

release/0.7
rubidium 2009-01-03 17:28:22 +00:00
parent afef22e3e7
commit 11c25a72fa
3 changed files with 8 additions and 8 deletions

View File

@ -263,10 +263,10 @@ private:
Order *first; ///< First order of the order list Order *first; ///< First order of the order list
VehicleOrderID num_orders; ///< NOSAVE: How many orders there are in the list VehicleOrderID num_orders; ///< NOSAVE: How many orders there are in the list
unsigned num_vehicles; ///< NOSAVE: Number of vehicles that share this order list uint num_vehicles; ///< NOSAVE: Number of vehicles that share this order list
Vehicle *first_shared; ///< NOSAVE: pointer to the first vehicle in the shared order chain Vehicle *first_shared; ///< NOSAVE: pointer to the first vehicle in the shared order chain
unsigned timetable_duration; ///< NOSAVE: Total duration of the order list uint timetable_duration; ///< NOSAVE: Total duration of the order list
public: public:
/** Default constructor producing an invalid order list. */ /** Default constructor producing an invalid order list. */
@ -344,7 +344,7 @@ public:
* Return the number of vehicles that share this orders list * Return the number of vehicles that share this orders list
* @return the count of vehicles that use this shared orders list * @return the count of vehicles that use this shared orders list
*/ */
inline unsigned GetNumVehicles() const { return this->num_vehicles; } inline uint GetNumVehicles() const { return this->num_vehicles; }
/** /**
* Checks whether a vehicle is part of the shared vehicle chain. * Checks whether a vehicle is part of the shared vehicle chain.
@ -384,7 +384,7 @@ public:
* Gets the total duration of the vehicles timetable or -1 is the timetable is not complete. * Gets the total duration of the vehicles timetable or -1 is the timetable is not complete.
* @return total timetable duration or -1 for incomplete timetables * @return total timetable duration or -1 for incomplete timetables
*/ */
inline int GetTimetableTotalDuration() const { return this->IsCompleteTimetable() ? this->timetable_duration : -1; } inline int GetTimetableTotalDuration() const { return this->IsCompleteTimetable() ? (int)this->timetable_duration : -1; }
/** /**
* Gets the known duration of the vehicles timetable even if the timetable is not complete. * Gets the known duration of the vehicles timetable even if the timetable is not complete.

View File

@ -412,8 +412,8 @@ bool OrderList::IsCompleteTimetable() const
void OrderList::DebugCheckSanity() const void OrderList::DebugCheckSanity() const
{ {
VehicleOrderID check_num_orders = 0; VehicleOrderID check_num_orders = 0;
unsigned check_num_vehicles = 0; uint check_num_vehicles = 0;
unsigned check_timetable_duration = 0; uint check_timetable_duration = 0;
DEBUG(misc, 6, "Checking OrderList %hu for sanity...", this->index); DEBUG(misc, 6, "Checking OrderList %hu for sanity...", this->index);
@ -429,7 +429,7 @@ void OrderList::DebugCheckSanity() const
assert(v->orders.list == this); assert(v->orders.list == this);
} }
assert(this->num_vehicles == check_num_vehicles); assert(this->num_vehicles == check_num_vehicles);
DEBUG(misc, 6, "... detected %u orders, %u vehicles, %u ticks", (unsigned)this->num_orders, DEBUG(misc, 6, "... detected %u orders, %u vehicles, %u ticks", (uint)this->num_orders,
this->num_vehicles, this->timetable_duration); this->num_vehicles, this->timetable_duration);
} }

View File

@ -39,7 +39,7 @@ bool FiosIsRoot(const char *file)
void FiosGetDrives() void FiosGetDrives()
{ {
unsigned disk, disk2, save, total; uint disk, disk2, save, total;
#ifndef __INNOTEK_LIBC__ #ifndef __INNOTEK_LIBC__
_dos_getdrive(&save); // save original drive _dos_getdrive(&save); // save original drive