diff options
| -rw-r--r-- | lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp b/lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp index 3d9b456..7a6b742 100644 --- a/lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp +++ b/lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp @@ -836,7 +836,7 @@ private: for (uint32_t i = 0; i < n; i++) { std::string name; uint32_t size; - GetChildType(i, name, size); + (void)GetChildType(i, name, size); // NOTE: the offset returned by GetChildCompilerTypeAtIndex() // can't be used because it never considers alignment bytes // between struct fields. |
