We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9202dfd commit a743429Copy full SHA for a743429
pcapps/pyth_csv.cpp
@@ -49,11 +49,11 @@ void print( replay& rep )
49
std::cout << ',';
50
str pstr = price_type_to_str( (price_type)ptr->ptype_ );
51
std::cout.write( pstr.str_, pstr.len_ );
52
+ std::cout << ',' << ptr->expo_;
53
54
str sstr = symbol_status_to_str( (symbol_status)ptr->agg_.status_ );
55
std::cout.write( sstr.str_, sstr.len_ );
- std::cout << ',' << ptr->expo_
56
- << ',' << ptr->agg_.price_
+ std::cout << ',' << ptr->agg_.price_
57
<< ',' << ptr->agg_.conf_
58
<< ',' << ptr->valid_slot_
59
<< ',' << ptr->agg_.pub_slot_;
0 commit comments