Skip to content
Snippets Groups Projects
Commit a88324ee authored by Ger van Diepen's avatar Ger van Diepen
Browse files

Task #514

Inlined writeVector
parent cdb9f551
No related branches found
No related tags found
No related merge requests found
...@@ -123,9 +123,9 @@ namespace LOFAR ...@@ -123,9 +123,9 @@ namespace LOFAR
// Write a vector to an ostream with a given separator, prefix and postfix. // Write a vector to an ostream with a given separator, prefix and postfix.
template<class T> template<class T>
void writeVector (std::ostream& os, const std::vector<T>& vec, inline void writeVector (std::ostream& os, const std::vector<T>& vec,
const char* separator, const char* separator,
const char* prefix, const char* postfix) const char* prefix, const char* postfix)
{ {
print (os, vec.begin(), vec.end(), separator, prefix, postfix); print (os, vec.begin(), vec.end(), separator, prefix, postfix);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment