0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 08:01:51 +08:00

Merge pull request #132 from jrlanglois/MIPSFix

Fixed compilation error on MIPS. #131
This commit is contained in:
Sergey Yagovtsev 2018-10-04 13:06:43 +03:00 committed by GitHub
commit e2fa76cb15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,9 @@ The Apache License, Version 2.0 (the "License");
# include <sys/time.h> # include <sys/time.h>
# endif//__ARM_ARCH # endif//__ARM_ARCH
#endif #endif
# ifdef __mips__
# include <sys/time.h>
# endif//__mips__
namespace profiler { namespace clock { namespace profiler { namespace clock {