Fix some space issues.

This commit is contained in:
Cary R 2011-04-26 14:18:30 -07:00 committed by Stephen Williams
parent 45ed389fc5
commit 029309103f
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ int Architecture::emit(ostream&out, Entity*entity)
for (map<perm_string,struct const_t>::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;
}

View File

@ -42,7 +42,7 @@ class ScopeBase {
protected:
// Signal declarations...
std::map<perm_string,Signal*> signals_;
// Component declarations...
// Component declarations...
std::map<perm_string,ComponentBase*> components_;
// Type declarations...
std::map<perm_string,const VType*> 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); }