summaryrefslogtreecommitdiffstats
path: root/base/command_line.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/command_line.h')
-rw-r--r--base/command_line.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/command_line.h b/base/command_line.h
index 2178bdf..331add9 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -173,9 +173,9 @@ class CommandLine {
void AppendArguments(const CommandLine& other,
bool include_program);
- // On POSIX systems it's common to run processes via a wrapper (like
- // "valgrind" or "gdb --args").
- void PrependWrapper(const std::wstring& wrapper);
+ // Insert a command before the current command. Common for debuggers,
+ // like "valgrind" or "gdb --args".
+ void PrependWrapper(const StringType& wrapper);
// Copy a set of switches (and their values, if any) from another command
// line. Commonly used when launching a subprocess.