changeset 8:ed800eab1c38 tip

fixed the brackets :^)
author Vlad Glagolev <enqlave@gmail.com>
date Sun, 20 Apr 2008 13:45:32 +0400
parents 8d54d9fdeca3
children
files sources/headers/connection.hpp
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/sources/headers/connection.hpp	Sun Feb 03 21:29:41 2008 +0300
+++ b/sources/headers/connection.hpp	Sun Apr 20 13:45:32 2008 +0400
@@ -52,15 +52,13 @@
 			port(p),
 			password(pw),
 			next(this)
-			{
-			};
+			{};
 		host_type(pchar h, int p, pchar pw, host_type *t):
 			host(h),
 			port(p),
 			password(pw),
 			next(t)
-			{
-			};
+			{};
 	} *hosts, *current;
 
 	host_type *addHost(host_type *, pchar, int, pchar);