Skip to content

Commit

Permalink
Fix test fixtures
Browse files Browse the repository at this point in the history
Reviewed By: Mizuchi

Differential Revision: D66418116

fbshipit-source-id: 08ae2a099396e539e29ff1953cdac6e5665c588d
  • Loading branch information
Aristidis Papaioannou authored and facebook-github-bot committed Nov 23, 2024
1 parent 18b23b8 commit 742539a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,13 @@ class ShouldBeBoxed final {
}

/** Glean { "field": "sessionId" } */
[[deprecated("Use `FOO.sessionId().value();` instead of `FOO.get_sessionId();`")]]
const ::std::string& get_sessionId() const& {
return __fbthrift_field_sessionId;
}

/** Glean { "field": "sessionId" } */
[[deprecated("Use `FOO.sessionId().value();` instead of `FOO.get_sessionId();`")]]
::std::string get_sessionId() && {
return std::move(__fbthrift_field_sessionId);
}
Expand Down

0 comments on commit 742539a

Please sign in to comment.