Fix some space issues.
This commit is contained in:
parent
45ed389fc5
commit
029309103f
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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); }
|
||||
|
|
|
|||
Loading…
Reference in New Issue