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

Ticket #703 (closed enhancement: fixed)

Opened 8 months ago

Last modified 8 months ago

FilePath could use a .dup

Reported by: darrylb Assigned to: kris
Priority: major Milestone: 0.99.3
Component: Core Functionality Version: 0.99.2 Don
Keywords: Cc:

Description

Would make some things easier, when you are basing a new FilePath? on an old one.

A bit nicer to do:

auto NewPath? = OldPath?.dup;

Than:

auto NewPath? = FilePath?(OldPath?.cString);

Change History

10/27/07 03:17:26 changed by kris

  • owner changed from sean to kris.
  • status changed from new to assigned.

yes

11/02/07 22:48:45 changed by kris

  • status changed from assigned to closed.
  • resolution set to fixed.
  • milestone set to 0.99.3.

fixed in [2729]

Thanks darrylb