MCPcopy Create free account
hub / github.com/boostorg/filesystem / do_row

Function do_row

doc/path_table.cpp:133–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131// do_row ------------------------------------------------------------------//
132
133 void do_row( const string & test_case )
134 {
135 outfile << "<tr>\n";
136
137 if (test_case.empty())
138 outfile << "<td><font size=\"-1\"><i>empty</i></font></td>\n";
139 else
140 outfile << "<td><code>" << test_case << "</code></td>\n";
141
142 for ( int i = 0; i < sizeof(column)/sizeof(column_base&); ++i )
143 {
144 do_cell( test_case, i );
145 }
146
147 outfile << "</tr>\n";
148 }
149
150// do_table ----------------------------------------------------------------//
151

Callers 1

do_tableFunction · 0.85

Calls 1

do_cellFunction · 0.85

Tested by

no test coverage detected