summaryrefslogtreecommitdiffstats
path: root/CommandLineArguments.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'CommandLineArguments.cxx')
-rw-r--r--CommandLineArguments.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/CommandLineArguments.cxx b/CommandLineArguments.cxx
index e45db36..ccd5f6d 100644
--- a/CommandLineArguments.cxx
+++ b/CommandLineArguments.cxx
@@ -319,7 +319,7 @@ void CommandLineArguments::DeleteRemainingArguments(int argc, char*** argv)
{
int cc;
for (cc = 0; cc < argc; ++cc) {
- delete[](*argv)[cc];
+ delete[] (*argv)[cc];
}
delete[] * argv;
}