Changed "struct swap" to "struct t_swap"
authorJohn Baxter <automata@unm.edu>
Wed, 21 Jan 2015 23:04:31 +0000 (16:04 -0700)
committerMark Abraham <mark.j.abraham@gmail.com>
Thu, 22 Jan 2015 23:18:28 +0000 (00:18 +0100)
Fixes #1674

Change-Id: Ia3917dd2ee9d30d2d280bd00fba8953b2eb5b432

src/gromacs/legacyheaders/types/inputrec.h
src/gromacs/swap/swapcoords.cpp

index 26af01e0efe4865b2dd13aba0d38ee38e05120dd..cbfc3e31109eee0e3cc6cd2d17896abf3d4cc6c9 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013,2014, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014,2015, 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.
@@ -283,7 +283,7 @@ typedef struct {
 } t_IMD;
 
 /* Abstract types for position swapping only defined in swapcoords.c */
-typedef struct swap *gmx_swapcoords_t;
+typedef struct t_swap *gmx_swapcoords_t;
 
 typedef struct {
     int              nstswap;           /* Every how many steps a swap is attempted?    */
index 048aa3b9241375d438c2ac4c327ee53eeef4609c..6d1d944600274446a79f1b2130c3a924d94811a1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2013,2014, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014,2015, 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.
@@ -149,7 +149,7 @@ typedef struct swap_group
 /*! \internal \brief
  * Main (private) data structure for the position swapping protocol.
  */
-typedef struct swap
+typedef struct t_swap
 {
     int               swapdim;                       /**< One of XX, YY, ZZ                               */
     t_pbc            *pbc;                           /**< Needed to make molecules whole.                 */