forked from OSchip/llvm-project
[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:
parent
3d4cadfb26
commit
254c4d174e
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue