File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -357,6 +357,11 @@ namespace infra
357357 return stream;
358358 }
359359
360+ infra::TextOutputStream& operator <<(TextOutputStream&& stream, const AsAsciiHelper& asAsciiHelper)
361+ {
362+ return stream << asAsciiHelper;
363+ }
364+
360365 AsHexHelper::AsHexHelper (ConstByteRange data)
361366 : data(data)
362367 {}
Original file line number Diff line number Diff line change @@ -254,6 +254,7 @@ namespace infra
254254 explicit AsAsciiHelper (infra::ConstByteRange data);
255255
256256 friend infra::TextOutputStream& operator <<(infra::TextOutputStream& stream, const AsAsciiHelper& asAsciiHelper);
257+ friend infra::TextOutputStream& operator <<(TextOutputStream&& stream, const AsAsciiHelper& asAsciiHelper);
257258
258259 private:
259260 infra::ConstByteRange data;
You can’t perform that action at this time.
0 commit comments