Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / mdrunutility / logging.h
index 4535fd9a93c11280af45e7c60a26d46c0e409d03..c0894aa99d04dedaac50932f78896d19a2987ba1 100644 (file)
@@ -54,23 +54,22 @@ namespace gmx
 {
 
 /*! \brief Close the log file */
-void closeLogFile(t_fileio *logfio);
+void closeLogFile(t_fileiologfio);
 
 //! Simple guard pointer See unique_cptr for details.
-using LogFilePtr = std::unique_ptr < t_fileio, functor_wrapper < t_fileio, closeLogFile>>;
+using LogFilePtr = std::unique_ptr<t_fileio, functor_wrapper<t_fileio, closeLogFile>>;
 
 /*! \brief Open the log file for writing/appending.
  *
  * \throws FileIOError when the log file cannot be opened. */
-LogFilePtr openLogFile(const char *lognm,
-                       bool        appendFiles);
+LogFilePtr openLogFile(const char* lognm, bool appendFiles);
 
 /*! \brief Prepare to use the open log file when appending.
  *
  * Does not throw.
  */
-void prepareLogAppending(FILE *fplog);
+void prepareLogAppending(FILEfplog);
 
-}    // namespace gmx
+} // namespace gmx
 
 #endif