[llvm] r316509 - Type.h: Don't mark header functions as file local

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 24 14:29:17 PDT 2017


Author: dblaikie
Date: Tue Oct 24 14:29:16 2017
New Revision: 316509

URL: http://llvm.org/viewvc/llvm-project?rev=316509&view=rev
Log:
Type.h: Don't mark header functions as file local

Modified:
    llvm/trunk/include/llvm/IR/Type.h

Modified: llvm/trunk/include/llvm/IR/Type.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Type.h?rev=316509&r1=316508&r2=316509&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Type.h (original)
+++ llvm/trunk/include/llvm/IR/Type.h Tue Oct 24 14:29:16 2017
@@ -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;
 }




More information about the llvm-commits mailing list