You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/11/28 02:24:53 UTC

svn commit: r479839 - /incubator/stdcxx/trunk/util/runall.cpp

Author: sebor
Date: Mon Nov 27 17:24:52 2006
New Revision: 479839

URL: http://svn.apache.org/viewvc?view=rev&rev=479839
Log:
2006-11-27  Martin Sebor  <se...@roguewave.com>

	* runall.cpp (merge_argv): Removed a redundant const qualifier
	from function return type.

Modified:
    incubator/stdcxx/trunk/util/runall.cpp

Modified: incubator/stdcxx/trunk/util/runall.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/util/runall.cpp?view=diff&rev=479839&r1=479838&r2=479839
==============================================================================
--- incubator/stdcxx/trunk/util/runall.cpp (original)
+++ incubator/stdcxx/trunk/util/runall.cpp Mon Nov 27 17:24:52 2006
@@ -89,7 +89,7 @@
    @param argv program wide argv array for child processes
    @return processed argv array, usable in exec ()
 */
-static char** const
+static char**
 merge_argv (char* const target, char* const argv [])
 {
     size_t tlen;