Skip to content
Snippets Groups Projects
Commit 4ccbde6d authored by Brad King's avatar Brad King
Browse files

COMP: More KWSys SharedForward pointer const-ness

This adds another cast to avoid pointer conversion warnings.
Unfortunately C does not recognize implicit conversions that add
cv-qualifiers as well as C++ does.
parent ca31e03d
No related branches found
No related tags found
No related merge requests found
......@@ -507,7 +507,7 @@ static void kwsys_shared_forward_execvp(const char* cmd,
nargv[argc] = 0;
/* Replace the command line to be used. */
argv = nargv;
argv = (char const* const*)nargv;
}
#endif
......
......@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2009)
SET(KWSYS_DATE_STAMP_MONTH 07)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 08)
SET(KWSYS_DATE_STAMP_DAY 09)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment