Including algorithm header to avoid VS2013 breakage

The header file <algorithm> must be included when std::min and std::max
are used.

R=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/9309004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5638 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org 2014-03-04 15:10:03 +00:00
parent 52e898d7b9
commit be50ab645a
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@
#include <stdlib.h>
#include <string.h> // memset
#include <algorithm>
#include <set>
#include <sstream>
#include <string>

View File

@ -10,6 +10,7 @@
// Test to verify correct stereo and multi-channel operation.
#include <algorithm>
#include <string>
#include <list>