diff --git a/llvm/include/llvm/Support/ScopedPrinter.h b/llvm/include/llvm/Support/ScopedPrinter.h --- a/llvm/include/llvm/Support/ScopedPrinter.h +++ b/llvm/include/llvm/Support/ScopedPrinter.h @@ -327,14 +327,6 @@ startLine() << Label << ": " << Value << "\n"; } - void printString(StringRef Label, const std::string &Value) { - printString(Label, StringRef(Value)); - } - - void printString(StringRef Label, const char *Value) { - printString(Label, StringRef(Value)); - } - template void printNumber(StringRef Label, StringRef Str, T Value) { printNumberImpl(Label, Str, to_string(Value));