[flang] Add explicit '= default' for move constructor.

Original-commit: flang-compiler/f18@7007a488ba
Reviewed-on: https://github.com/flang-compiler/f18/pull/186
Tree-same-pre-rewrite: false
This commit is contained in:
Tim Keith 2018-09-15 15:05:59 -07:00
parent 64ed507b36
commit f5e29b175e
1 changed files with 1 additions and 0 deletions

View File

@ -216,6 +216,7 @@ struct UnitAnalysis {
class ParseTreeAnalyzer {
public:
ParseTreeAnalyzer(ParseTreeAnalyzer &&that) = default;
ParseTreeAnalyzer(parser::Messages &errorHandler)
: errorHandler_{errorHandler} {}