gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Add missing include to time_measure.h
0 1 0
default
1 file changed with 1 insertions and 0 deletions:
↑ Collapse diff ↑
Ignore white space 16 line context
... ...
@@ -24,16 +24,17 @@
24 24
///\brief Tools for measuring cpu usage
25 25

	
26 26
#ifdef WIN32
27 27
#define WIN32_LEAN_AND_MEAN
28 28
#define NOMINMAX
29 29
#include <windows.h>
30 30
#include <cmath>
31 31
#else
32
#include <unistd.h>
32 33
#include <sys/times.h>
33 34
#include <sys/time.h>
34 35
#endif
35 36

	
36 37
#include <string>
37 38
#include <fstream>
38 39
#include <iostream>
39 40

	
0 comments (0 inline)