diff options
Diffstat (limited to 'host/lib/types')
-rw-r--r-- | host/lib/types/types.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/types/types.cpp b/host/lib/types/types.cpp index aa87f30a5..7e947a4f8 100644 --- a/host/lib/types/types.cpp +++ b/host/lib/types/types.cpp @@ -24,11 +24,11 @@ stream_cmd_t::stream_cmd_t(const stream_mode_t &stream_mode): /*********************************************************************** * metadata **********************************************************************/ -tx_metadata_t::tx_metadata_t(void): - has_time_spec(false), - time_spec(time_spec_t()), - start_of_burst(false), - end_of_burst(false) +tx_metadata_t::tx_metadata_t(void) + : has_time_spec(false) + , time_spec(time_spec_t()) + , start_of_burst(false) + , end_of_burst(false) { /* NOP */ } |