diff options
Diffstat (limited to 'lldb/include/lldb/Interpreter/Args.h')
-rw-r--r-- | lldb/include/lldb/Interpreter/Args.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/include/lldb/Interpreter/Args.h b/lldb/include/lldb/Interpreter/Args.h index 8296e2fd03b..84918367040 100644 --- a/lldb/include/lldb/Interpreter/Args.h +++ b/lldb/include/lldb/Interpreter/Args.h @@ -268,7 +268,7 @@ public: // FIXME: Handle the quote character somehow. //------------------------------------------------------------------ void - SetArguments (int argc, const char **argv); + SetArguments (size_t argc, const char **argv); void SetArguments (const char **argv); @@ -390,7 +390,7 @@ public: static bool StringToBoolean (const char *s, bool fail_value, bool *success_ptr); - static int32_t + static int64_t StringToOptionEnum (const char *s, OptionEnumValueElement *enum_values, int32_t fail_value, Error &error); static lldb::ScriptLanguage @@ -399,7 +399,7 @@ public: static Error StringToFormat (const char *s, lldb::Format &format, - uint32_t *byte_size_ptr); // If non-NULL, then a byte size can precede the format character + size_t *byte_size_ptr); // If non-NULL, then a byte size can precede the format character static lldb::Encoding StringToEncoding (const char *s, |