Changeset 499
- Timestamp:
- 01/10/11 23:27:41 (1 year ago)
- Files:
-
- trunk/src/core/time.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/core/time.d
r498 r499 1189 1189 +/ 1190 1190 @safe 1191 this(long hnsecs) pure nothrow1191 pure nothrow this(long hnsecs) 1192 1192 { 1193 1193 _hnsecs = hnsecs; … … 1811 1811 ticks = The number of ticks in the TickDuration. 1812 1812 +/ 1813 this(long ticks) pure nothrow1813 pure nothrow this(long ticks) 1814 1814 { 1815 1815 this.length = ticks; … … 2681 2681 FracSec greater than or equal to 1 second. 2682 2682 +/ 2683 this(int hnsecs) pure2683 pure this(int hnsecs) 2684 2684 { 2685 2685 _enforceValid(hnsecs); … … 2711 2711 next = The previous exception in the chain of exceptions, if any. 2712 2712 +/ 2713 this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null) nothrow2713 nothrow this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null) 2714 2714 { 2715 2715 super(msg, file, line, next);
