Skip to content

Commit

Permalink
Made a public alias private like it should have been in the first place.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdavis committed May 15, 2011
1 parent 347a8c8 commit cf497ec
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions std/datetime.d
Expand Up @@ -120,8 +120,6 @@ import std.string;
import std.system;
import std.traits;

private alias std.algorithm.find find;

version(Windows)
{
import core.sys.windows.windows;
Expand Down Expand Up @@ -151,7 +149,8 @@ version(unittest)
import std.stdio;
}

alias std.string.indexOf indexOf;
private alias std.algorithm.find find;
private alias std.string.indexOf indexOf;

//Verify module example.
version(testStdDateTime) unittest
Expand Down

0 comments on commit cf497ec

Please sign in to comment.