*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / tool.hh
index 1941f7c22654da86c592953f2be5451361b5a0cb..1f5008b281d224ef201a077cb5e111ff4f3f1604 100644 (file)
@@ -1,3 +1,22 @@
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/05/30 02:51:16 $
+ * $Author: hachti $
+ *
+ * $Log: tool.hh,v $
+ * Revision 2.1  2007/05/30 02:51:16  hachti
+ * Changed everything towards LDC2 use.
+ * Worked on the buildlib.sh.
+ * Centralized  buildlib.sh to a new lib/common directory.
+ *
+ * Revision 2.0  2007-03-26 01:00:40  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
 #ifndef TOOL_HH
 #define TOOL_HH
 
@@ -25,7 +44,7 @@ void merge_vector_unique(vector<T> &target, const vector<T> & source){
        already_present=true;
        break;
       }
-    if (!already_present) target.insert(target.end(),source[isource]);
+    if (!already_present) target.insert(target.begin(),source[isource]);
   }
 }