From c3abf0682d89b103ee3af79a4e4bd489ca9b5536 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Fri, 7 Sep 2012 14:18:25 +0200 Subject: [PATCH] Preventing compile errors by removing defaults in FTP constructor. --- lib/ftp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ftp.h b/lib/ftp.h index 2ea6b3c2..fb5b35d2 100644 --- a/lib/ftp.h +++ b/lib/ftp.h @@ -55,7 +55,7 @@ namespace FTP { class User { public: - User( Socket::Connection NewConnection = Socket::Connection(), std::map Credentials = std::map() ); + User( Socket::Connection NewConnection, std::map Credentials); ~User( ); int ParseCommand( std::string Command ); bool LoggedIn( );