From a88324ee5d9e67ec37ec28ad8b904d4fe25559e5 Mon Sep 17 00:00:00 2001
From: Ger van Diepen <diepen@astron.nl>
Date: Tue, 15 Oct 2013 10:01:11 +0000
Subject: [PATCH] Task #514 Inlined writeVector

---
 LCS/Common/include/Common/StreamUtil.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/LCS/Common/include/Common/StreamUtil.h b/LCS/Common/include/Common/StreamUtil.h
index 9dccc65d1b2..3a8b80611e4 100644
--- a/LCS/Common/include/Common/StreamUtil.h
+++ b/LCS/Common/include/Common/StreamUtil.h
@@ -123,9 +123,9 @@ namespace LOFAR
 
   // Write a vector to an ostream with a given separator, prefix and postfix.
   template<class T>
-  void writeVector (std::ostream& os, const std::vector<T>& vec,
-		    const char* separator,
-		    const char* prefix, const char* postfix)
+  inline void writeVector (std::ostream& os, const std::vector<T>& vec,
+                           const char* separator,
+                           const char* prefix, const char* postfix)
   {
     print (os, vec.begin(), vec.end(), separator, prefix, postfix);
   }
-- 
GitLab