Apply clang-tidy-8 readability-uppercase-literal-suffix
[alexxy/gromacs.git] / src / gromacs / fileio / pdbio.cpp
index aff5e005cd74caf22ee5e3d30ca28e8e52ebee9d..2ac27ffd02c382bf284add5c3b66520c733f4eb0 100644 (file)
@@ -316,7 +316,7 @@ void write_pdbfile_indexed(FILE *out, const char *title,
 
 
     fprintf(out, "TITLE     %s\n", (title && title[0]) ? title : gmx::bromacs().c_str());
-    if (box && ( (norm2(box[XX]) != 0.0f) || (norm2(box[YY]) != 0.0f) || (norm2(box[ZZ]) != 0.0f) ) )
+    if (box && ( (norm2(box[XX]) != 0.0F) || (norm2(box[YY]) != 0.0F) || (norm2(box[ZZ]) != 0.0F) ) )
     {
         gmx_write_pdb_box(out, ePBC, box);
     }