From 77d5a619b8b1d4cece3ec38378c00a1333815966 Mon Sep 17 00:00:00 2001 From: fche Date: Fri, 31 Jan 2003 16:48:03 +0000 Subject: [PATCH] 2003-01-31 Frank Ch. Eigler * baseCfg.cxx, commonCfg.cxx: More of the same. --- sid/main/dynamic/ChangeLog | 4 ++++ sid/main/dynamic/baseCfg.cxx | 12 ++++++------ sid/main/dynamic/commonCfg.cxx | 8 ++++---- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/sid/main/dynamic/ChangeLog b/sid/main/dynamic/ChangeLog index c040e88d3c..f54c858fdc 100644 --- a/sid/main/dynamic/ChangeLog +++ b/sid/main/dynamic/ChangeLog @@ -1,3 +1,7 @@ +2003-01-31 Frank Ch. Eigler + + * baseCfg.cxx, commonCfg.cxx: More of the same. + 2003-01-30 Frank Ch. Eigler * baseCfg.cxx: Remove some erroneous default parameters in fn decls. diff --git a/sid/main/dynamic/baseCfg.cxx b/sid/main/dynamic/baseCfg.cxx index 6e2427a4ca..41519082b8 100644 --- a/sid/main/dynamic/baseCfg.cxx +++ b/sid/main/dynamic/baseCfg.cxx @@ -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), diff --git a/sid/main/dynamic/commonCfg.cxx b/sid/main/dynamic/commonCfg.cxx index 8ec23727b6..efd00feaea 100644 --- a/sid/main/dynamic/commonCfg.cxx +++ b/sid/main/dynamic/commonCfg.cxx @@ -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), -- 2.11.0