diff options
| author | Nathan Conrad <[email protected]> | 2018-04-22 23:31:42 -0400 |
|---|---|---|
| committer | Nathan Conrad <[email protected]> | 2018-04-22 23:34:08 -0400 |
| commit | 373d64290239f3ed74d98b20494383f03fe189b6 (patch) | |
| tree | 918be07864511a5d7a5fca0be5a75fc4e8b6335e /src/stream_manager.h | |
| parent | f97a699ea5bee0a9df79afec40c0142d7ff8c5be (diff) | |
Some classes were referred to as a class and a struct (reported as clang warnings). This makes these consistent.
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 ) { |
