diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 |
| commit | f3fbd1c0586ff6ec7895991e6c28f61a503c36a8 (patch) | |
| tree | 48d008fd3df8c0e73271a4b18474e0aac6dbfe33 /tools/driver/Driver.h | |
| parent | 2fc5d2d1dfaf623ce4e24cd8590565902f8c557c (diff) | |
Notes
Diffstat (limited to 'tools/driver/Driver.h')
| -rw-r--r-- | tools/driver/Driver.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/driver/Driver.h b/tools/driver/Driver.h index 639ac41d7fe6..8ac59240bc26 100644 --- a/tools/driver/Driver.h +++ b/tools/driver/Driver.h @@ -81,14 +81,16 @@ public: struct InitialCmdEntry { - InitialCmdEntry (const char *in_contents, bool in_is_file, bool in_quiet = false) : + InitialCmdEntry (const char *in_contents, bool in_is_file, bool is_cwd_lldbinit_file_read, bool in_quiet = false) : contents (in_contents), is_file (in_is_file), - source_quietly(in_quiet) + is_cwd_lldbinit_file_read (is_cwd_lldbinit_file_read), + source_quietly (in_quiet) {} std::string contents; bool is_file; + bool is_cwd_lldbinit_file_read; // if this is reading ./.lldbinit - so we may skip if not permitted bool source_quietly; }; |
