From 06ad105631c1954a4f2055e1c5b1d085830e8548 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Thu, 15 Feb 2018 23:32:33 +0100 Subject: [PATCH] Add missing include. The functions "memcpy" and "memset" are defined in "string.h" which was not included. Found this when compiling with g++ 5.4 on Ubuntu Xenial. Bug: None Change-Id: Ife9a9ce2a168ecc24d983afcfc0a39784cbedf9f Reviewed-on: https://webrtc-review.googlesource.com/54121 Reviewed-by: Gustaf Ullberg Commit-Queue: Gustaf Ullberg Cr-Commit-Position: refs/heads/master@{#22043} --- api/audio/audio_frame.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/audio/audio_frame.cc b/api/audio/audio_frame.cc index 3dc510dd3c..108a523d0b 100644 --- a/api/audio/audio_frame.cc +++ b/api/audio/audio_frame.cc @@ -8,6 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include + #include "api/audio/audio_frame.h" #include "rtc_base/checks.h"