clang-tidy: override
[alexxy/gromacs.git] / src / gromacs / utility / fileredirector.cpp
index 4cf13f3dbd27f58c94ce4dcf0397a72c68d7481a..cfb71e4b918de3224880d594a8c77b6f6410fe55 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2015, by the GROMACS development team, led by
+ * Copyright (c) 2015,2018, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -71,8 +71,8 @@ namespace
 class DefaultInputRedirector : public IFileInputRedirector
 {
     public:
-        virtual bool fileExists(const char            *filename,
-                                File::NotFoundHandler  onNotFound) const
+        bool fileExists(const char            *filename,
+                        File::NotFoundHandler  onNotFound) const override
         {
             return File::exists(filename, onNotFound);
         }
@@ -90,11 +90,11 @@ class DefaultInputRedirector : public IFileInputRedirector
 class DefaultOutputRedirector : public IFileOutputRedirector
 {
     public:
-        virtual TextOutputStream &standardOutput()
+        TextOutputStream &standardOutput() override
         {
             return TextOutputFile::standardOutput();
         }
-        virtual TextOutputStreamPointer openTextOutputFile(const char *filename)
+        TextOutputStreamPointer openTextOutputFile(const char *filename) override
         {
             return TextOutputStreamPointer(new TextOutputFile(filename));
         }