From 8287ed239839c8ed4b15d984c0fcdd1a4331af8a Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Tue, 24 Oct 2017 21:29:16 +0000 Subject: [PATCH] Type.h: Don't mark header functions as file local git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316509 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/Type.h b/include/llvm/IR/Type.h index ef780126677..1574fc334ff 100644 --- a/include/llvm/IR/Type.h +++ b/include/llvm/IR/Type.h @@ -438,7 +438,7 @@ private: }; // Printing of types. -static inline raw_ostream &operator<<(raw_ostream &OS, const Type &T) { +inline raw_ostream &operator<<(raw_ostream &OS, const Type &T) { T.print(OS); return OS; } -- 2.50.1