mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
parent
4c6f79ed22
commit
0236b3e4a4
1 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
|||
|
||||
#include <memory>
|
||||
#include <iterator>
|
||||
#include <limits>
|
||||
|
||||
#include "nel/misc/common.h"
|
||||
|
||||
|
@ -61,7 +62,7 @@ struct TTimeSlice
|
|||
uint32 EndDate;
|
||||
};
|
||||
|
||||
const TTimeSlice FullTimeSlice = {0, ~0};
|
||||
const TTimeSlice FullTimeSlice = {0, std::numeric_limits<uint32>::max()};
|
||||
|
||||
/// Defile the complete selected time line
|
||||
typedef std::vector<TTimeSlice> TTimeLine;
|
||||
|
|
Loading…
Reference in a new issue