Changeset 2601
- Timestamp:
- 10/02/07 13:06:17 (1 year ago)
- Files:
-
- trunk/tango/core/Variant.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/core/Variant.d
r2465 r2601 313 313 else static if( isPointer!(T) ) 314 314 { 315 this.value.ptr = cast(void*) T;315 this.value.ptr = cast(void*)value; 316 316 } 317 317 else static if( isObject!(T) ) 318 318 { 319 this.value.obj = T;319 this.value.obj = value; 320 320 } 321 321 else … … 436 436 } 437 437 } 438 assert(false);439 438 } 440 439












