From: David Blaikie Date: Tue, 24 Oct 2017 21:29:19 +0000 (+0000) Subject: Printable.h: Don't mark header functions as file local X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5c3a33e44b67778fb5cbff86086432e6f3ba930;p=llvm Printable.h: Don't mark header functions as file local git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316513 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Printable.h b/include/llvm/Support/Printable.h index 28e875e8ff5..cb55d41316e 100644 --- a/include/llvm/Support/Printable.h +++ b/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; }