[sword-svn] r2934 - trunk/src/mgr
scribe at crosswire.org
scribe at crosswire.org
Wed Jul 31 07:39:18 MST 2013
Author: scribe
Date: 2013-07-31 07:39:18 -0700 (Wed, 31 Jul 2013)
New Revision: 2934
Modified:
trunk/src/mgr/remotetrans.cpp
Log:
moving ignore of deprecation warning to outside of method to satisfy previous versions of gcc
Modified: trunk/src/mgr/remotetrans.cpp
===================================================================
--- trunk/src/mgr/remotetrans.cpp 2013-07-31 14:17:09 UTC (rev 2933)
+++ trunk/src/mgr/remotetrans.cpp 2013-07-31 14:39:18 UTC (rev 2934)
@@ -191,10 +191,10 @@
return retVal;
}
-void StatusReporter::update(unsigned long totalBytes, unsigned long completedBytes) {
#if defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
+void StatusReporter::update(unsigned long totalBytes, unsigned long completedBytes) {
statusUpdate(totalBytes, completedBytes);
}
More information about the sword-cvs
mailing list