Remove clang:find_bad_constructs suppression from call:call.

This CL removes //build/config/clang:find_bad_constructs from the
suppressed_configs list, which means that clang:find_bad_constructs
is now enabled on these translation units.

Bug: webrtc:9251, webrtc:163
Change-Id: I74cb86c29cebb69dd22083718f1446f18f705cd4
Reviewed-on: https://webrtc-review.googlesource.com/95883
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24483}
diff --git a/modules/video_coding/fec_controller_default.h b/modules/video_coding/fec_controller_default.h
index 776977a..a95eced 100644
--- a/modules/video_coding/fec_controller_default.h
+++ b/modules/video_coding/fec_controller_default.h
@@ -26,7 +26,7 @@
   FecControllerDefault(Clock* clock,
                        VCMProtectionCallback* protection_callback);
   explicit FecControllerDefault(Clock* clock);
-  ~FecControllerDefault();
+  ~FecControllerDefault() override;
   void SetProtectionCallback(
       VCMProtectionCallback* protection_callback) override;
   void SetProtectionMethod(bool enable_fec, bool enable_nack) override;
@@ -41,7 +41,7 @@
                           int64_t round_trip_time_ms) override;
   void UpdateWithEncodedData(const size_t encoded_image_length,
                              const FrameType encoded_image_frametype) override;
-  bool UseLossVectorMask() override { return false; }
+  bool UseLossVectorMask() override;
 
  private:
   enum { kBitrateAverageWinMs = 1000 };