Merge pull request #872 from cxd4/need-time_h

[Common] Have required sys/time.h POSIX inc for new time code.
This commit is contained in:
zilmar 2016-01-13 20:04:39 +11:00
commit cb2662afee
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#include "stdafx.h"
#ifdef _WIN32
#include <Windows.h>
#else
#include <sys/time.h>
#endif
typedef std::map<uint32_t, stdstr> ModuleNameMap;