Issue 6572 - Deprecate typedef

Remove use of deprecated typedef from phobos.  This mostly consists of changing typedef to alias, and disabling unittests that require typedef.  One change to std.registry is needed to work around a bug in typedef (6571).
This commit is contained in:
Daniel Murphy 2011-08-30 13:22:10 +10:00
parent 2297b0e2f5
commit 1590a5cc38
10 changed files with 31 additions and 31 deletions

View file

@ -929,7 +929,7 @@ T toImpl(T, S)(S s, in T left = S.stringof~"(", in T right = ")")
}
}
unittest
version(none) unittest
{
debug(conv) scope(success) writeln("unittest @",
__FILE__, ":", __LINE__, " succeeded.");
@ -2700,7 +2700,7 @@ Target parse(Target, Source)(ref Source s, dchar lbracket = '[', dchar rbracket
return result;
}
unittest
version(none) unittest
{
debug(conv) scope(success) writeln("unittest @", __FILE__, ":", __LINE__, " succeeded.");
typedef uint Testing;