Some small changes in configuration_manager output - added (c/f) info.
[h316.git] / pc-tools / ldc2 / src / tool.hh
index 1f5008b281d224ef201a077cb5e111ff4f3f1604..5d3a7ccfda9121a71742916d0d92af3278c79a73 100644 (file)
@@ -2,11 +2,15 @@
  * 
  * LDC2 source code
  *
- * $Date: 2007/05/30 02:51:16 $
+ * $Date: 2007/06/15 12:46:04 $
  * $Author: hachti $
  *
  * $Log: tool.hh,v $
- * Revision 2.1  2007/05/30 02:51:16  hachti
+ * Revision 2.2  2007/06/15 12:46:04  hachti
+ * Some small changes in configuration_manager output - added (c/f) info.
+ * Changed order in tool.hh:add_unique....
+ *
+ * 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.
@@ -44,7 +48,7 @@ void merge_vector_unique(vector<T> &target, const vector<T> & source){
        already_present=true;
        break;
       }
-    if (!already_present) target.insert(target.begin(),source[isource]);
+    if (!already_present) target.insert(target.end(),source[isource]);
   }
 }