Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2011

Show
Ignore:
Timestamp:
04/10/07 00:29:18 (2 years ago)
Author:
kris
Message:

protection from delete;

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/log/Hierarchy.d

    r1988 r2011  
    6363                this.additive = true; 
    6464                this.name = name; 
     65        } 
     66 
     67        /*********************************************************************** 
     68         
     69                No, you should not delete or 'scope' these entites 
     70 
     71        ***********************************************************************/ 
     72 
     73        private ~this() 
     74        { 
     75                throw new Exception ("attempt to delete a LoggerInstance!"); 
    6576        } 
    6677