OSDN Git Service

[Support] Introduce llvm::formatv() function.
[android-x86/external-llvm.git] / include / llvm / Support / raw_ostream.h
index 3753a8f..df8de09 100644 (file)
@@ -20,6 +20,7 @@
 #include <system_error>
 
 namespace llvm {
+class formatv_object_base;
 class format_object_base;
 class FormattedString;
 class FormattedNumber;
@@ -223,6 +224,9 @@ public:
   // Formatted output, see the formatHex() function in Support/Format.h.
   raw_ostream &operator<<(const FormattedNumber &);
 
+  // Formatted output, see the formatv() function in Support/FormatVariadic.h.
+  raw_ostream &operator<<(const formatv_object_base &);
+
   // Formatted output, see the format_bytes() function in Support/Format.h.
   raw_ostream &operator<<(const FormattedBytes &);