OSDN Git Service

2003-01-31 Frank Ch. Eigler <fche@redhat.com>
authorfche <fche>
Fri, 31 Jan 2003 16:48:03 +0000 (16:48 +0000)
committerfche <fche>
Fri, 31 Jan 2003 16:48:03 +0000 (16:48 +0000)
* baseCfg.cxx, commonCfg.cxx: More of the same.

sid/main/dynamic/ChangeLog
sid/main/dynamic/baseCfg.cxx
sid/main/dynamic/commonCfg.cxx

index c040e88..f54c858 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-31  Frank Ch. Eigler  <fche@redhat.com>
+
+       * baseCfg.cxx, commonCfg.cxx: More of the same.
+
 2003-01-30  Frank Ch. Eigler  <fche@redhat.com>
 
        * baseCfg.cxx: Remove some erroneous default parameters in fn decls.
index 6e2427a..4151908 100644 (file)
@@ -378,7 +378,7 @@ const ResolvedName AggregateCfg::resolve(const role r, const string name)
 
 Connection::Connection (ComponentCfg *src, const string srcport, 
                        ComponentCfg *dst, const string dstport,
-                       bool virt = true) :
+                       bool virt) :
   my_src (src), my_srcport (srcport), 
   my_dst (dst), my_dstport (dstport),
   my_virt (virt)
@@ -390,8 +390,8 @@ Connection::Connection (ComponentCfg *src, const string srcport,
 
 PinConnection::PinConnection (ComponentCfg *src, const string srcport, 
                              ComponentCfg *dst, const string dstport, 
-                             const direction dir = src_to_dst,
-                             bool virt = true) :
+                             const direction dir,
+                             bool virt) :
   Connection (src, srcport, dst, dstport, virt),
   my_dir (dir)
 {
@@ -457,7 +457,7 @@ void PinConnection::write_to (Writer &w)
 
 BusConnection::BusConnection (ComponentCfg *src, const string srcport,
                              ComponentCfg *dst, const string dstport,
-                             bool virt = true) :
+                             bool virt) :
   Connection (src, srcport, dst, dstport, virt)
 {
   assert (src);
@@ -484,7 +484,7 @@ void BusConnection::write_to (Writer &w)
 }
 
 Setting::Setting (ComponentCfg *targ, const string attr, 
-                 const string val, bool virt = true) :
+                 const string val, bool virt) :
   my_targ (targ), 
   my_attr (attr),
   my_val (val),
@@ -510,7 +510,7 @@ void Setting::write_to (Writer &w)
 }
 
 Relation::Relation (ComponentCfg *relater, const string relationship, 
-                   ComponentCfg *related, bool virt = true) :
+                   ComponentCfg *related, bool virt) :
   my_relater (relater), 
   my_relationship (relationship),
   my_related (related),
index 8ec2372..efd00fe 100644 (file)
@@ -420,7 +420,7 @@ MapperCfg *MapperCfg::get_by_name (const string name)
 }
 
 MapperCfg::~MapperCfg () {}
-MapperCfg::MapperCfg (const string name, bool transparent = false) :
+MapperCfg::MapperCfg (const string name, bool transparent) :
   ComponentCfg (name),
   AtomicCfg (name, 
             "libmapper.la", 
@@ -825,9 +825,9 @@ BoardCfg::~BoardCfg () {}
 BoardCfg::BoardCfg (const string name, 
                    const string default_cpu_variant,               
                    SessionCfg *s,
-                   bool with_default_gloss = true,
-                   bool with_z_packet = true,
-                   bool with_cpu_main_mem_connect = false) :
+                   bool with_default_gloss,
+                   bool with_z_packet,
+                   bool with_cpu_main_mem_connect) :
   ComponentCfg (name),
   AggregateCfg (name),
   cache_flush_net (NULL),