C++11: Use member declaration initalizations. No functional change intended.

This commit is contained in:
Wilson Snyder
2020-08-16 11:44:06 -04:00
parent 033e7ac020
commit 72d2cff0a1
117 changed files with 981 additions and 1469 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class V3Lexer : public V3LexerBase {
public:
// CONSTRUCTORS
V3Lexer()
: V3LexerBase(nullptr) {}
: V3LexerBase{nullptr} {}
~V3Lexer() {}
// METHODS
void unputString(const char* textp, size_t length) {