forked from OSchip/llvm-project
[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:
parent
64ed507b36
commit
f5e29b175e
|
@ -216,6 +216,7 @@ struct UnitAnalysis {
|
|||
|
||||
class ParseTreeAnalyzer {
|
||||
public:
|
||||
ParseTreeAnalyzer(ParseTreeAnalyzer &&that) = default;
|
||||
ParseTreeAnalyzer(parser::Messages &errorHandler)
|
||||
: errorHandler_{errorHandler} {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue