[lldb] Fix build failure introduced by 3d4cadfb26

This patch updates the `ScriptedProcess::GetGenericInteger` return type
to `llvm::Optional<unsigned long long>` to match implementation.

Differential Revision: https://reviews.llvm.org/D105788

Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
Med Ismail Bennani 2021-07-22 20:54:27 +00:00
parent 3d4cadfb26
commit 254c4d174e
No known key found for this signature in database
GPG Key ID: 9040401522D38F4E
1 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,8 @@ public:
bool IsAlive() override;
protected:
llvm::Optional<uint64_t> GetGenericInteger(llvm::StringRef method_name);
llvm::Optional<unsigned long long>
GetGenericInteger(llvm::StringRef method_name);
Status GetStatusFromMethod(llvm::StringRef method_name);
private: