Fix build errors:

- VS2013: #include <algorithm> in Common.h for std::max
- VS2010 32-bit: explicitly cast size_t to unsigned int to avoid compile error with TInfoSink::operator<< (size_t and unsigned int ambiguous)

JohnK approved check-in by E-mail.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25043 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich 2014-01-27 20:02:12 +00:00
parent e5fbec8a17
commit 255df5760a
2 changed files with 5 additions and 4 deletions

View file

@ -62,6 +62,7 @@
#include <vector>
#include <map>
#include <list>
#include <algorithm>
#include <string>
#include <stdio.h>
#include <assert.h>