[csw-devel] SF.net SVN: gar:[21416] csw/mgar/pkg/scummvm-tools/trunk/files/ 0002-avoid-deque-constructor-for-studio.patch
lblume at users.sourceforge.net
lblume at users.sourceforge.net
Sun Jun 30 21:26:27 CEST 2013
Revision: 21416
http://gar.svn.sourceforge.net/gar/?rev=21416&view=rev
Author: lblume
Date: 2013-06-30 19:26:21 +0000 (Sun, 30 Jun 2013)
Log Message:
-----------
scummvm-tools/trunk: Copy/paste fail, fixed
Modified Paths:
--------------
csw/mgar/pkg/scummvm-tools/trunk/files/0002-avoid-deque-constructor-for-studio.patch
Modified: csw/mgar/pkg/scummvm-tools/trunk/files/0002-avoid-deque-constructor-for-studio.patch
===================================================================
--- csw/mgar/pkg/scummvm-tools/trunk/files/0002-avoid-deque-constructor-for-studio.patch 2013-06-30 08:33:16 UTC (rev 21415)
+++ csw/mgar/pkg/scummvm-tools/trunk/files/0002-avoid-deque-constructor-for-studio.patch 2013-06-30 19:26:21 UTC (rev 21416)
@@ -6,7 +6,7 @@
+// If using Solaris Studio
+#if defined(__sun) && !defined(__GNUC__)
-+ std::deque<std::string> arguments; for (int i = 1; i < argc; i++);
++ std::deque<std::string> arguments; for (int i = 0; i < argc; i++) arguments.push_back(argv[i]);
+#else
std::deque<std::string> arguments(argv, argv + argc);
arguments.pop_front(); // Pop our own name
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list