[lldb] Update ReadAllRegisterValues in RegisterContextWindows

This commit is contained in:
Jonas Devlieghere 2022-04-05 15:15:42 -07:00
parent b6087ba769
commit 70984dd40a
No known key found for this signature in database
GPG Key ID: 49CC0BD90FDEED4D
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ void RegisterContextWindows::InvalidateAllRegisters() {
}
bool RegisterContextWindows::ReadAllRegisterValues(
lldb::DataBufferSP &data_sp) {
lldb::WritableDataBufferSP &data_sp) {
if (!CacheAllRegisterValues())
return false;

View File

@ -26,7 +26,7 @@ public:
// Subclasses must override these functions
void InvalidateAllRegisters() override;
bool ReadAllRegisterValues(lldb::DataBufferSP &data_sp) override;
bool ReadAllRegisterValues(lldb::WritableDataBufferSP &data_sp) override;
bool WriteAllRegisterValues(const lldb::DataBufferSP &data_sp) override;