Changeset 3668
- Timestamp:
- 06/23/08 02:18:47 (4 months ago)
- Files:
-
- trunk/tango/util/container/more/Vector.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/util/container/more/Vector.d
r3667 r3668 87 87 **********************************************************************/ 88 88 89 voidadd (V value)89 V add (V value) 90 90 { 91 91 if (depth < vector.length) 92 vector[depth++] = value;92 return vector[depth++] = value; 93 93 else 94 94 error (__LINE__);












