Kernel/Plan9FS: Propagate errors in Plan9FSMessage::append_data

This commit is contained in:
Freakness109 2022-12-16 22:21:18 +01:00 committed by Sam Atkins
commit 1f1e58ed75
Notes: sideshowbarker 2024-07-17 03:04:29 +09:00
3 changed files with 5 additions and 5 deletions

View file

@ -135,7 +135,7 @@ public:
Plan9FSMessage& operator<<(u32);
Plan9FSMessage& operator<<(u64);
Plan9FSMessage& operator<<(StringView);
void append_data(StringView);
ErrorOr<void> append_data(StringView);
template<typename T>
Plan9FSMessage& operator>>(T& t)