From 26fe866cec7e74a782700b7d03e378791b737908 Mon Sep 17 00:00:00 2001
From: Daniel Dunbar
LLVM includes a lightweight, simple, and efficient stream implementation in llvm/Support/raw_ostream.h which provides all of the common features -of std::iostream. All new code should use raw_ostream instead -of iostream.
+of std::ostream. All new code should use raw_ostream instead +of ostream. -Unlike std::iostream, raw_ostream is not a template and can +
Unlike std::ostream, raw_ostream is not a template and can be forward declared as class raw_ostream. Public headers should generally not include the raw_ostream header, but use forward declarations and constant references to raw_ostream instances.
-- 2.34.1