OSDN Git Service

2003-01-30 Frank Ch. Eigler <fche@redhat.com>
authorfche <fche>
Thu, 30 Jan 2003 16:52:44 +0000 (16:52 +0000)
committerfche <fche>
Thu, 30 Jan 2003 16:52:44 +0000 (16:52 +0000)
* baseCfg.cxx: Remove some erroneous default parameters in fn decls.

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

index e36bc74..c040e88 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-30  Frank Ch. Eigler  <fche@redhat.com>
+
+       * baseCfg.cxx: Remove some erroneous default parameters in fn decls.
+
 2002-05-30  Frank Ch. Eigler  <fche@redhat.com>
 
        * mainDynamic.cxx (main): Add new "--rc" option to control passing
index 06a8058..6e2427a 100644 (file)
@@ -137,8 +137,8 @@ void ComponentCfg::add_post (Writable *w)
 
 void ComponentCfg::conn_pin (ComponentCfg *src, const string srcport, 
                             ComponentCfg *dst, const string dstport, 
-                            const direction dir = src_to_dst
-                            bool virt = true)
+                            const direction dir, 
+                            bool virt)
 {
   add_post (new PinConnection (src, srcport, dst, dstport, dir, virt));
 }
@@ -147,7 +147,7 @@ void ComponentCfg::conn_bus (ComponentCfg *src,
                             const string srcport,
                             ComponentCfg *dst, 
                             const string dstport,
-                            bool virt = true)
+                            bool virt)
 {
   add_post (new BusConnection (src, srcport, dst, dstport, virt));
 }
@@ -155,7 +155,7 @@ void ComponentCfg::conn_bus (ComponentCfg *src,
 void ComponentCfg::set (ComponentCfg *targ, 
                        const string attr, 
                        const string val,
-                       bool virt = true)
+                       bool virt)
 {
   add_post (new Setting (targ, attr, val, virt));
 }
@@ -163,7 +163,7 @@ void ComponentCfg::set (ComponentCfg *targ,
 void ComponentCfg::relate (ComponentCfg *relater, 
                           const string relationship, 
                           ComponentCfg *related,
-                          bool virt = true)
+                          bool virt)
 {
   add_post (new Relation (relater, relationship, related, virt));
 }