aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/ast/rust-fmt.h
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2024-02-13 16:31:25 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2024-08-01 13:11:29 +0200
commit0f9668507c9843a773af794ed8d0b0de3fa8b5cf (patch)
tree9baf7f99f190a6ead727f097aa2b7e204341b3dd /gcc/rust/ast/rust-fmt.h
parent827231aac4d0532dd74863f72c11462cecd02abb (diff)
downloadgcc-0f9668507c9843a773af794ed8d0b0de3fa8b5cf.zip
gcc-0f9668507c9843a773af794ed8d0b0de3fa8b5cf.tar.gz
gcc-0f9668507c9843a773af794ed8d0b0de3fa8b5cf.tar.bz2
gccrs: rust-fmt: Store parsed string in Pieces struct
gcc/rust/ChangeLog: * ast/rust-fmt.cc (Pieces::collect): Fix signature to take ownership of the given string. * ast/rust-fmt.h (struct Pieces): Store parsed string in the struct. libgrust/ChangeLog: * libformat_parser/src/lib.rs: Add debug prompt.
Diffstat (limited to 'gcc/rust/ast/rust-fmt.h')
-rw-r--r--gcc/rust/ast/rust-fmt.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-fmt.h b/gcc/rust/ast/rust-fmt.h
index 50aeff6..0bf9695 100644
--- a/gcc/rust/ast/rust-fmt.h
+++ b/gcc/rust/ast/rust-fmt.h
@@ -251,13 +251,16 @@ void destroy_pieces (PieceSlice);
struct Pieces
{
- static Pieces collect (const std::string &to_parse);
+ static Pieces collect (std::string &&to_parse);
~Pieces ();
private:
- Pieces (PieceSlice slice) : slice (slice) {}
+ Pieces (PieceSlice slice, std::string &&to_parse)
+ : slice (slice), to_parse (std::move (to_parse))
+ {}
PieceSlice slice;
+ std::string to_parse;
};
} // namespace Fmt