From 29c8f0aa206935e1841864d47e8df46239eec4ca Mon Sep 17 00:00:00 2001 From: "ulrich.bauer@gmail.com" Date: Fri, 25 Oct 2013 13:36:16 +0000 Subject: small fix suggested by Hubert On 14.09.2013, at 12:52, Hubert Wagner wrote: Hi Uli, I am using PHAT for some experiments and it didn't compile under VC++ 2010. The problem was that std::back_inserter was not found in a number of cases. The solution is to #include in helpers/misc.h. Best, Hubert git-svn-id: https://phat.googlecode.com/svn/trunk@143 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d --- include/phat/helpers/misc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/phat/helpers/misc.h b/include/phat/helpers/misc.h index d9d5d8f..fb5c07a 100644 --- a/include/phat/helpers/misc.h +++ b/include/phat/helpers/misc.h @@ -34,7 +34,8 @@ #include #include #include - +#include + // VS2008 and below unfortunately do not support stdint.h #if defined(_MSC_VER)&& _MSC_VER < 1600 typedef __int8 int8_t; -- cgit v1.2.3