clang-tidy: readability-non-const-parameter (2/2)
[alexxy/gromacs.git] / src / gromacs / gmxana / dens_filter.h
index acbc23ae156d09474e162d16da974650bb4bcb3b..396a378034f49f0f73384cd58d7de2d6163ccfca 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2011,2013,2014, by the GROMACS development team, led by
+ * Copyright (c) 2011,2013,2014,2018, 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.
@@ -45,9 +45,9 @@ extern "C"
 #endif
 
 extern gmx_bool convolution(int dataSize, real* in, int kernelSize,
-                            real* kernel);
+                            const real* kernel);
 extern gmx_bool periodic_convolution(int dsize, real *in, int ksize,
-                                     real* kernel);
+                                     const real* kernel);
 extern void gausskernel(real *out, int size, real var);
 
 #ifdef __cplusplus