Skip to content

Commit

Permalink
Merge pull request #1397 from Surajjalpun2002/master
Browse files Browse the repository at this point in the history
removed 2 type of clang-tidy errors in dcdformat.cpp
  • Loading branch information
ghutchis authored Oct 24, 2023
2 parents 3c58251 + 2c84c3e commit d031064
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions avogadro/io/dcdformat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ using Core::UnitCell;
#ifndef _WIN32
#endif

#define DCD_EOF -1
#define DCD_MAGIC 84
#define DCD_IS_CHARMM 0x01
#define DCD_HAS_4DIMS 0x02
#define DCD_HAS_EXTRA_BLOCK 0x04
#define DCD_EOF (-1)
constexpr int DCD_MAGIC = 84;
constexpr int DCD_IS_CHARMM = 0x01;
constexpr int DCD_HAS_4DIMS = 0x02;
constexpr int DCD_HAS_EXTRA_BLOCK = 0x04;

int swap_integer(int inp)
{
Expand Down

0 comments on commit d031064

Please sign in to comment.