0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 01:58:35 +02:00

ircd::js: Import operator<< from ircd:: to optimize implicit conversions.

This commit is contained in:
Jason Volk 2016-11-27 19:05:40 -08:00
parent 6156d8eb92
commit ea4d74de2b

View file

@ -56,6 +56,9 @@ namespace js { struct InterpreterFrame; }
namespace ircd {
namespace js {
// The ostream operator is explicitly brought from ircd:: to compete for efficient overloading,
// and prevent any unnecessary implicit conversions here.
using ircd::operator<<;
} // namespace js
} // namespace ircd