OmniSciDB  72c90bc290
 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 137 of file Importer.cpp.

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