Remove ; from end of some function definitions. No functional change

This commit is contained in:
Wilson Snyder
2009-07-22 14:38:20 -04:00
parent 15b3c9797b
commit c44febe85e
16 changed files with 98 additions and 95 deletions
+1 -1
View File
@@ -67,7 +67,7 @@
int m_minWidth; // Minimum width, for (2+2), it's 2 bits, for 32'2+32'2 it's 32 bits
Stage m_stage; // If true, report errors
public:
WidthVP(int width, int minWidth, Stage stage) : m_width(width), m_minWidth(minWidth), m_stage(stage) {};
WidthVP(int width, int minWidth, Stage stage) : m_width(width), m_minWidth(minWidth), m_stage(stage) {}
int width() const { return m_width; }
int widthMin() const { return m_minWidth?m_minWidth:m_width; }
bool prelim() const { return m_stage&1; }