Fix clang style warnings in webrtc/modules/audio_coding
Mostly this consists of marking functions with override when
applicable, and moving function bodies from .h to .cc files.
BUG=163
R=henrik.lundin@webrtc.org, tina.legrand@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/44979004
Cr-Commit-Position: refs/heads/master@{#8938}
diff --git a/webrtc/modules/interface/module.h b/webrtc/modules/interface/module.h
index a83f148..529138d 100644
--- a/webrtc/modules/interface/module.h
+++ b/webrtc/modules/interface/module.h
@@ -73,7 +73,7 @@
virtual int32_t Release() = 0;
protected:
- virtual ~RefCountedModule() {}
+ ~RefCountedModule() override = default;
};
} // namespace webrtc