Clean up the use of static and anonymous namespaces. This turned up
[oota-llvm.git] / lib / Archive / ArchiveReader.cpp
index fd0e30a71bfb4fa8b02a8a6c8b0ddb8c92dc9175..1ded9e5c4cc0692d9d1b6c56e0bf869b1fedd2be 100644 (file)
@@ -19,7 +19,7 @@
 using namespace llvm;
 
 /// Read a variable-bit-rate encoded unsigned integer
-inline unsigned readInteger(const char*&At, const char*End){
+static inline unsigned readInteger(const char*&At, const char*End) {
   unsigned Shift = 0;
   unsigned Result = 0;