From 61ded31a718cb146f5097ae914887a960a39ab0e Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Fri, 9 Dec 2022 14:50:21 -0800 Subject: [PATCH 1/3] [cpp20] Fix incompatible aggregate initialization --- third_party/accessibility/ax/ax_tree_update.h | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/accessibility/ax/ax_tree_update.h b/third_party/accessibility/ax/ax_tree_update.h index e0b895f8550ec..c4804692f44a1 100644 --- a/third_party/accessibility/ax/ax_tree_update.h +++ b/third_party/accessibility/ax/ax_tree_update.h @@ -50,7 +50,6 @@ namespace ui { // before or after an AXTreeUpdate. template struct AXTreeUpdateBase { - AXTreeUpdateBase() = default; ~AXTreeUpdateBase() = default; // If |has_tree_data| is true, the value of |tree_data| should be used From 6bcf3f0b764c42ebc9ee6df463671aa330e32a7f Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Mon, 12 Dec 2022 10:22:11 -0800 Subject: [PATCH 2/3] Update third_party/accessibility/ax/ax_tree_update.h Co-authored-by: Chris Bracken --- third_party/accessibility/ax/ax_tree_update.h | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/accessibility/ax/ax_tree_update.h b/third_party/accessibility/ax/ax_tree_update.h index c4804692f44a1..13d4fde2a2b94 100644 --- a/third_party/accessibility/ax/ax_tree_update.h +++ b/third_party/accessibility/ax/ax_tree_update.h @@ -50,7 +50,6 @@ namespace ui { // before or after an AXTreeUpdate. template struct AXTreeUpdateBase { - ~AXTreeUpdateBase() = default; // If |has_tree_data| is true, the value of |tree_data| should be used // to update the tree data, otherwise it should be ignored. From ab33a4941b5c371c5fef0ffeea7c31af4893d833 Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Mon, 12 Dec 2022 11:05:52 -0800 Subject: [PATCH 3/3] Update third_party/accessibility/ax/ax_tree_update.h Co-authored-by: Chris Bracken --- third_party/accessibility/ax/ax_tree_update.h | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/accessibility/ax/ax_tree_update.h b/third_party/accessibility/ax/ax_tree_update.h index 13d4fde2a2b94..e091c4e67aad6 100644 --- a/third_party/accessibility/ax/ax_tree_update.h +++ b/third_party/accessibility/ax/ax_tree_update.h @@ -50,7 +50,6 @@ namespace ui { // before or after an AXTreeUpdate. template struct AXTreeUpdateBase { - // If |has_tree_data| is true, the value of |tree_data| should be used // to update the tree data, otherwise it should be ignored. bool has_tree_data = false;