fixed right padding issue for several output members
[senf.git] / senf / Socket / Protocols / Raw / EUI64.cti
index 8494c7d..83e744d 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2009 
+// Copyright (C) 2009
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 #include <senf/config.hh>
 
 #define prefix_ inline
-///////////////////////////////cti.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 template <class InputIterator>
 prefix_ senf::EUI64 senf::EUI64::from_data(InputIterator i)
 {
     EUI64 eui (senf::noinit);
-    SENF_copy_n(i, 8, eui.begin());
+    senf::config::copy_n(i, 8, eui.begin());
     return eui;
 }
 
-///////////////////////////////cti.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f