I'd like to use this lib with wcout to dispaly utf16 characters, but when writing
wcout << dye::green(L"hello");
I get the error:
error: no match for 'operator<<' (operand types are 'std::wostream' {aka 'std::basic_ostream<wchar_t>'} and 'dye::R<const wchar_t*>' {aka 'dye::colorful<const wchar_t*>'})
wcout << dye::green(L"hello");
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I'd like to use this lib with wcout to dispaly utf16 characters, but when writing
wcout << dye::green(L"hello");
I get the error:Any quick solution for this issue?