]> gcc.gnu.org Git - gcc.git/commitdiff
gccrs: ast: Add explicit default copy constructor
authorPierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Tue, 27 Jun 2023 12:03:16 +0000 (14:03 +0200)
committerArthur Cohen <arthur.cohen@embecosm.com>
Tue, 16 Jan 2024 17:46:30 +0000 (18:46 +0100)
Add explicit default copy/move constructor to identifiers.

gcc/rust/ChangeLog:

* ast/rust-ast.h: Add default constructors.

Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
gcc/rust/ast/rust-ast.h

index a4caee7237df8dcacb3819c78dddff2377481ea2..e097a21d1cf3c8031db6f80de269f730149dff46 100644 (file)
@@ -39,6 +39,11 @@ public:
     : ident (ident), node_id (Analysis::Mappings::get ()->get_next_node_id ())
   {}
 
+  Identifier (const Identifier &) = default;
+  Identifier (Identifier &&) = default;
+  Identifier &operator= (const Identifier &) = default;
+  Identifier &operator= (Identifier &&) = default;
+
   NodeId get_node_id () const { return node_id; }
   const std::string &as_string () const { return ident; }
 
This page took 0.057914 seconds and 5 git commands to generate.