CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     Jon Daniel <[EMAIL PROTECTED]>  05/08/05 21:54:00

Modified files:
        src            : network_worker.cpp 

Log message:
        Remove unused variable

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/network_worker.cpp.diff?tr1=1.38&tr2=1.39&r1=text&r2=text

Patches:
Index: wesnoth/src/network_worker.cpp
diff -u wesnoth/src/network_worker.cpp:1.38 wesnoth/src/network_worker.cpp:1.39
--- wesnoth/src/network_worker.cpp:1.38 Fri Aug  5 21:53:03 2005
+++ wesnoth/src/network_worker.cpp      Fri Aug  5 21:54:00 2005
@@ -1,4 +1,4 @@
-/* $Id: network_worker.cpp,v 1.38 2005/08/05 21:53:03 j_daniel Exp $ */
+/* $Id: network_worker.cpp,v 1.39 2005/08/05 21:54:00 j_daniel Exp $ */
 /*
    Copyright (C) 2003-5 by David White <[EMAIL PROTECTED]>
    Part of the Battle for Wesnoth Project http://www.wesnoth.org/
@@ -46,11 +46,6 @@
 //a queue of sockets that we are waiting to receive on
 typedef std::vector<TCPsocket> receive_list;
 receive_list pending_receives;
-
-//access to this variable isn't synchronized -- it's non-critical
-//and we don't want to pay the synchronization cost when it's rarely
-//cared about.
-std::pair<int,int> current_transfer_stats;
 
 typedef std::deque<buffer> received_queue;
 received_queue received_data_queue;


Reply via email to