Blob Blame History Raw
diff -up chromium-92.0.4515.107/tools/gn/src/gn/err.h.gn-gcc-cleanup chromium-92.0.4515.107/tools/gn/src/gn/err.h
--- chromium-92.0.4515.107/tools/gn/src/gn/err.h.gn-gcc-cleanup	2021-07-19 14:54:04.000000000 -0400
+++ chromium-92.0.4515.107/tools/gn/src/gn/err.h	2021-07-26 17:23:54.477420431 -0400
@@ -56,7 +56,7 @@ class Err {
       const std::string& help_text = std::string());
 
   Err(const Err& other);
-
+  Err& operator=(const Err& other) = default;
   ~Err();
 
   bool has_error() const { return has_error_; }
diff -up chromium-92.0.4515.107/tools/gn/src/gn/label_pattern.h.gn-gcc-cleanup chromium-92.0.4515.107/tools/gn/src/gn/label_pattern.h
--- chromium-92.0.4515.107/tools/gn/src/gn/label_pattern.h.gn-gcc-cleanup	2021-07-26 17:23:54.478420447 -0400
+++ chromium-92.0.4515.107/tools/gn/src/gn/label_pattern.h	2021-07-26 17:26:36.904894419 -0400
@@ -33,6 +33,7 @@ class LabelPattern {
                std::string_view name,
                const Label& toolchain_label);
   LabelPattern(const LabelPattern& other);
+  LabelPattern& operator=(const LabelPattern& other) = default;
   ~LabelPattern();
 
   // Converts the given input string to a pattern. This does special stuff
diff -up chromium-92.0.4515.107/tools/gn/src/gn/substitution_list.h.gn-gcc-cleanup chromium-92.0.4515.107/tools/gn/src/gn/substitution_list.h
--- chromium-92.0.4515.107/tools/gn/src/gn/substitution_list.h.gn-gcc-cleanup	2021-07-19 14:54:04.000000000 -0400
+++ chromium-92.0.4515.107/tools/gn/src/gn/substitution_list.h	2021-07-26 17:23:54.478420447 -0400
@@ -15,6 +15,7 @@ class SubstitutionList {
  public:
   SubstitutionList();
   SubstitutionList(const SubstitutionList& other);
+  SubstitutionList& operator=(const SubstitutionList& other) = default;
   ~SubstitutionList();
 
   bool Parse(const Value& value, Err* err);
diff -up chromium-92.0.4515.107/tools/gn/src/gn/substitution_pattern.h.gn-gcc-cleanup chromium-92.0.4515.107/tools/gn/src/gn/substitution_pattern.h
--- chromium-92.0.4515.107/tools/gn/src/gn/substitution_pattern.h.gn-gcc-cleanup	2021-07-19 14:54:04.000000000 -0400
+++ chromium-92.0.4515.107/tools/gn/src/gn/substitution_pattern.h	2021-07-26 17:23:54.478420447 -0400
@@ -35,6 +35,7 @@ class SubstitutionPattern {
 
   SubstitutionPattern();
   SubstitutionPattern(const SubstitutionPattern& other);
+  SubstitutionPattern& operator=(const SubstitutionPattern& other) = default;
   ~SubstitutionPattern();
 
   // Parses the given string and fills in the pattern. The pattern must only