diff options
| author | Tim Rogers <[email protected]> | 2018-10-05 12:18:05 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-10-05 12:18:05 -0400 |
| commit | 2f2345eef7e40e2fcd0cf5558adfa0fd4ff728d1 (patch) | |
| tree | b4f1f1e3f110e58197c435228ad7d4f011cda0cd /src/stream_manager.h | |
| parent | 3ed4c7d70a8ce94eb6b5bbccdac15b35c76f54e0 (diff) | |
| parent | c246c12dffa6683a1fe61ad3a311cce8b1c1cbbf (diff) | |
Merge pull request #66 from pigrew/cleanup-clang-warnings
Cleanup clang warnings
Diffstat (limited to 'src/stream_manager.h')
| -rw-r--r-- | src/stream_manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream_manager.h b/src/stream_manager.h index 222a1b2..d3a804f 100644 --- a/src/stream_manager.h +++ b/src/stream_manager.h @@ -93,7 +93,7 @@ public: m_stream=stream; m_done=false; } - stream_operation( class CUevent_st *e, struct CUstream_st *stream ) + stream_operation( struct CUevent_st *e, struct CUstream_st *stream ) { m_kernel=NULL; m_type=stream_event; @@ -172,10 +172,10 @@ private: bool m_sim_mode; kernel_info_t *m_kernel; - class CUevent_st *m_event; + struct CUevent_st *m_event; }; -class CUevent_st { +struct CUevent_st { public: CUevent_st( bool blocking ) { |
