OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
boost::log Namespace Reference

Functions

formatting_ostream & operator<< (formatting_ostream &out, std::vector< std::string > &row)
 

Function Documentation

formatting_ostream& boost::log::operator<< ( formatting_ostream &  out,
std::vector< std::string > &  row 
)

Definition at line 138 of file Importer.cpp.

138  {
139  out << '[';
140  for (size_t i = 0; i < row.size(); ++i) {
141  out << (i ? ", " : "") << row[i];
142  }
143  out << ']';
144  return out;
145 }