From 029309103feb35a92d2eb458f6e20e3311e69003 Mon Sep 17 00:00:00 2001 From: Cary R Date: Tue, 26 Apr 2011 14:18:30 -0700 Subject: [PATCH] Fix some space issues. --- vhdlpp/architec_emit.cc | 2 +- vhdlpp/scope.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vhdlpp/architec_emit.cc b/vhdlpp/architec_emit.cc index d7f77625d..7380bbea7 100644 --- a/vhdlpp/architec_emit.cc +++ b/vhdlpp/architec_emit.cc @@ -45,7 +45,7 @@ int Architecture::emit(ostream&out, Entity*entity) for (map::iterator cur = constants_.begin() ; cur != constants_.end() ; ++cur) { - out << "localparam " << cur->first << " = "; + out << "localparam " << cur->first << " = "; errors += cur->second.val->emit(out, entity, this); out << ";" << endl; } diff --git a/vhdlpp/scope.h b/vhdlpp/scope.h index 72187fcb6..f6345ab2c 100644 --- a/vhdlpp/scope.h +++ b/vhdlpp/scope.h @@ -42,7 +42,7 @@ class ScopeBase { protected: // Signal declarations... std::map signals_; - // Component declarations... + // Component declarations... std::map components_; // Type declarations... std::map types_; @@ -83,7 +83,7 @@ class ActiveScope : public ScopeBase { public: ActiveScope() { } ActiveScope(ActiveScope*par) : ScopeBase(*par) { } - + ~ActiveScope() { } void use_from(const ScopeBase*that) { do_use_from(that); }