diff options
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r-- | src/ast/ast.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index 47b09ed4..362af210 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -424,8 +424,8 @@ struct UseStmt ::AST::Path path;
::AST::MetaItems attrs;
- UseStmt(UseStmt&&) = default;
- UseStmt(){}
+ UseStmt()
+ {}
UseStmt(Span sp, Path p):
sp(sp),
path(p)
|