commit | 12dc1a38ca54a000e4fecfbc6d41138b895c9ca5 | [log] [tgz] |
---|---|---|
author | pbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Mon Aug 05 16:22:53 2013 |
committer | pbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Mon Aug 05 16:22:53 2013 |
tree | 3dab4ada21d5e7e585822e4ea89d057b13b57517 | |
parent | c3d93c692169121fc815cd32ac3527de64c4af89 [diff] [blame] |
Switch C++-style C headers with their C equivalents. The C++ headers define the C functions within the std:: namespace, but we mainly don't use the std:: namespace for C functions. Therefore we should include the C headers. BUG=1833 R=tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1917004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4486 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/neteq4/statistics_calculator.cc b/webrtc/modules/audio_coding/neteq4/statistics_calculator.cc index 9355204..b6e9222 100644 --- a/webrtc/modules/audio_coding/neteq4/statistics_calculator.cc +++ b/webrtc/modules/audio_coding/neteq4/statistics_calculator.cc
@@ -11,8 +11,7 @@ #include "webrtc/modules/audio_coding/neteq4/statistics_calculator.h" #include <assert.h> - -#include <cstring> // memset +#include <string.h> // memset #include "webrtc/modules/audio_coding/neteq4/decision_logic.h" #include "webrtc/modules/audio_coding/neteq4/delay_manager.h"