diff options
author | Pierre Ossman <ossman@cendio.se> | 2016-07-07 15:35:57 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2016-07-07 15:36:36 +0200 |
commit | ff872614b507d0aa8bfbd09ef41550390cfe658a (patch) | |
tree | 0993b903b55f2c9f7fd2df4fea623594fdf331ae /common | |
parent | f0812683f8009f231bd1b02929f7e71d9ed4c5dd (diff) | |
download | tigervnc-ff872614b507d0aa8bfbd09ef41550390cfe658a.tar.gz tigervnc-ff872614b507d0aa8bfbd09ef41550390cfe658a.zip |
Include stddef.h to get access to size_t
Diffstat (limited to 'common')
-rw-r--r-- | common/os/Thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/os/Thread.h b/common/os/Thread.h index bca41bbc..4c39884b 100644 --- a/common/os/Thread.h +++ b/common/os/Thread.h @@ -19,6 +19,8 @@ #ifndef __OS_THREAD_H__ #define __OS_THREAD_H__ +#include <stddef.h> + namespace os { class Mutex; |