for something like that
class foo
{
foo& operator<<(const BYTE*){ ...; return *this; };
}
foo f;
f << {0x00, 0x00, 0x00} << {0x00, 0x00, 0x00};
{0x00, 0x00, 0x00}
is not allowed by compiler in such expressions.
for something like that
class foo
{
foo& operator<<(const BYTE*){ ...; return *this; };
}
foo f;
f << {0x00, 0x00, 0x00} << {0x00, 0x00, 0x00};
{0x00, 0x00, 0x00}
is not allowed by compiler in such expressions.