Browse Source

Fix build.

Kim Kulling 9 years ago
parent
commit
810fc405a8
1 changed files with 5 additions and 5 deletions
  1. 5 5
      code/DefaultIOStream.h

+ 5 - 5
code/DefaultIOStream.h

@@ -78,14 +78,14 @@ public:
     /// Read from stream
     /// Read from stream
     size_t Read(void* pvBuffer,
     size_t Read(void* pvBuffer,
         size_t pSize,
         size_t pSize,
-        size_t pCount) override;
+        size_t pCount);
 
 
 
 
     // -------------------------------------------------------------------
     // -------------------------------------------------------------------
     /// Write to stream
     /// Write to stream
     size_t Write(const void* pvBuffer,
     size_t Write(const void* pvBuffer,
         size_t pSize,
         size_t pSize,
-        size_t pCount) override;
+        size_t pCount);
 
 
     // -------------------------------------------------------------------
     // -------------------------------------------------------------------
     /// Seek specific position
     /// Seek specific position
@@ -94,15 +94,15 @@ public:
 
 
     // -------------------------------------------------------------------
     // -------------------------------------------------------------------
     /// Get current seek position
     /// Get current seek position
-    size_t Tell() const override;
+    size_t Tell() const;
 
 
     // -------------------------------------------------------------------
     // -------------------------------------------------------------------
     /// Get size of file
     /// Get size of file
-    size_t FileSize() const override;
+    size_t FileSize() const;
 
 
     // -------------------------------------------------------------------
     // -------------------------------------------------------------------
     /// Flush file contents
     /// Flush file contents
-    void Flush() override;
+    void Flush();
 
 
 private:
 private:
     //  File data-structure, using clib
     //  File data-structure, using clib