Remove redundant 'llvm::' qualifications
[oota-llvm.git] / include / llvm / Object / RelocVisitor.h
index 6100185d3b4f8651747ffd47f49d553aceb425c5..0bfa9408c762221ffc7a6f32500fa3a816b0457c 100644 (file)
@@ -40,7 +40,7 @@ struct RelocToApply {
 /// @brief Base class for object file relocation visitors.
 class RelocVisitor {
 public:
-  explicit RelocVisitor(llvm::StringRef FileFormat)
+  explicit RelocVisitor(StringRef FileFormat)
     : FileFormat(FileFormat), HasError(false) {}
 
   // TODO: Should handle multiple applied relocations via either passing in the
@@ -83,7 +83,7 @@ public:
   bool error() { return HasError; }
 
 private:
-  llvm::StringRef FileFormat;
+  StringRef FileFormat;
   bool HasError;
 
   /// Operations