Fix compile error in http server example.

This commit is contained in:
Sönke Ludwig 2017-01-23 11:03:36 +01:00
parent a8aa505373
commit 72280338ef
No known key found for this signature in database
GPG Key ID: D95E8DB493EE314C
1 changed files with 1 additions and 2 deletions

View File

@ -47,9 +47,8 @@ struct ClientHandler {
void handleConnection()
{
int fd = client;
//import core.thread;
//() @trusted { print("Connection %d %s", fd, cast(void*)Thread.getThis()); } ();
//() @trusted { print("Connection %d %s", client, cast(void*)Thread.getThis()); } ();
readLine(&onRequestLine);
}