Fix -Wextra-semi warnings.
[oota-llvm.git] / include / llvm / ExecutionEngine / RuntimeDyld.h
index a808d923116713e0554a70f4fe66bf06199de825..2b6e98287b16e41abef1c60f343c2a6640fc0e65 100644 (file)
@@ -87,7 +87,7 @@ public:
   /// \brief Memory Management.
   class MemoryManager {
   public:
-    virtual ~MemoryManager() {};
+    virtual ~MemoryManager() {}
 
     /// Allocate a memory block of (at least) the given size suitable for
     /// executable code. The SectionID is a unique identifier assigned by the
@@ -149,7 +149,7 @@ public:
   /// \brief Symbol resolution.
   class SymbolResolver {
   public:
-    virtual ~SymbolResolver() {};
+    virtual ~SymbolResolver() {}
 
     /// This method returns the address of the specified function or variable.
     /// It is used to resolve symbols during module linking.