Code beautification with uncrustify
[alexxy/gromacs.git] / src / gromacs / utility / programinfo.cpp
index 3c86fa88b1ed15af50a6031adb52e883e79514ad..a9b014cafd17a8ea1b03cc8a94a33694fda7c99e 100644 (file)
@@ -63,12 +63,12 @@ namespace gmx
 namespace
 {
 //! Mutex for updates to the global program info objects.
-tMPI::mutex g_programInfoMutex;
+tMPI::mutex                    g_programInfoMutex;
 //! Partially filled program info, needed to support set_program_name().
 boost::scoped_ptr<ProgramInfo> g_partialProgramInfo;
 //! Global program info; stores the object initialized with ProgramInfo::init().
 boost::scoped_ptr<ProgramInfo> g_programInfo;
-} // namespace
+}   // namespace
 
 /********************************************************************
  * ProgramInfo::Impl
@@ -109,7 +109,7 @@ ProgramInfo::Impl::Impl(const char *realBinaryName,
         std::replace(fullInvokedProgram_.begin(), fullInvokedProgram_.end(),
                      '/', '\\');
     }
-    programName_ = stripSuffixIfPresent(programName_, ".exe");
+    programName_          = stripSuffixIfPresent(programName_, ".exe");
     invariantProgramName_ = programName_;
 #ifdef GMX_BINARY_SUFFIX
     invariantProgramName_ =
@@ -126,8 +126,8 @@ ProgramInfo::Impl::Impl(const char *realBinaryName,
         {
             commandLine_.append(" ");
         }
-        const char *arg = argv[i];
-        bool bSpaces = (std::strchr(arg, ' ') != NULL);
+        const char *arg     = argv[i];
+        bool        bSpaces = (std::strchr(arg, ' ') != NULL);
         if (bSpaces)
         {
             commandLine_.append("'");