Changeset 499

Show
Ignore:
Timestamp:
01/10/11 23:27:41 (1 year ago)
Author:
jmdavis
Message:

Shifted attributes on constructors in core.time due to bug# 5427.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/core/time.d

    r498 r499  
    11891189      +/ 
    11901190    @safe 
    1191     this(long hnsecs) pure nothrow 
     1191    pure nothrow this(long hnsecs) 
    11921192    { 
    11931193        _hnsecs = hnsecs; 
     
    18111811            ticks = The number of ticks in the TickDuration. 
    18121812      +/ 
    1813     this(long ticks) pure nothrow 
     1813    pure nothrow this(long ticks) 
    18141814    { 
    18151815        this.length = ticks; 
     
    26812681            FracSec greater than or equal to 1 second. 
    26822682      +/ 
    2683     this(int hnsecs) pure 
     2683    pure this(int hnsecs) 
    26842684    { 
    26852685        _enforceValid(hnsecs); 
     
    27112711            next = The previous exception in the chain of exceptions, if any. 
    27122712      +/ 
    2713     this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null) nothrow 
     2713    nothrow this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null) 
    27142714    { 
    27152715        super(msg, file, line, next);