Merge in Pull Request #81 for D-Programming-Language / phobos.

Conflicts:
	changelog.dd
This commit is contained in:
jmdavis 2011-06-08 08:46:52 -07:00
commit b51ca2725d
2 changed files with 3 additions and 2 deletions

View file

@ -18,5 +18,6 @@ $(VERSION 054, ddd mm, 2011, =================================================,
$(LI $(BUGZILLA 5673): Add lookahead and forgetful matching support std.regex)
$(LI $(BUGZILLA 5857): std.regex (...){n,m} is bogus when (...) contains repetitions)
$(LI $(BUGZILLA 6076): regression, std.regex: "c.*|d" matches "mm")
$(LI $(BUGZILLA 6113): singletons in std.datetime are not created early enough)
)
)

View file

@ -28359,7 +28359,7 @@ private:
static immutable LocalTime _localTime;
static this()
shared static this()
{
tzset();
@ -28483,7 +28483,7 @@ private:
static immutable UTC _utc;
static this()
shared static this()
{
_utc = new immutable(UTC)();
}