From a4cceca999fb6d6f6e37b64478a550dd5a5d2f9f Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Tue, 24 Oct 2017 21:29:19 +0000 Subject: [PATCH] Printable.h: Don't mark header functions as file local llvm-svn: 316513 --- llvm/include/llvm/Support/Printable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/Printable.h b/llvm/include/llvm/Support/Printable.h index 28e875e..cb55d41 100644 --- a/llvm/include/llvm/Support/Printable.h +++ b/llvm/include/llvm/Support/Printable.h @@ -42,7 +42,7 @@ public: : Print(std::move(Print)) {} }; -static inline raw_ostream &operator<<(raw_ostream &OS, const Printable &P) { +inline raw_ostream &operator<<(raw_ostream &OS, const Printable &P) { P.Print(OS); return OS; } -- 2.7.4