aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-05-21 10:55:04 +0000
committerrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-05-21 10:55:04 +0000
commit3d5f15a0cb5f6d614c7329d0d1113805d2fdfdab (patch)
tree9c2d0b557a83ccf4a89c72c7e483e7571836f0ef
parenta2e55d6e2cb462c51f16efeac1a737f86477e18d (diff)
"CCTK_POINTER IN" is now "CCTK_POINTER_TO_CONST".
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@236 6a38eb6e-646e-4a02-a296-d141613ad6c4
-rw-r--r--src/Boundary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Boundary.h b/src/Boundary.h
index 1fbe1ff..c9b0056 100644
--- a/src/Boundary.h
+++ b/src/Boundary.h
@@ -19,7 +19,7 @@ extern "C"
/* data type for pointer to function which implements a physical boundary
condition: */
-typedef CCTK_INT (*phys_bc_fn_ptr)(const CCTK_POINTER, const CCTK_INT,
+typedef CCTK_INT (*phys_bc_fn_ptr)(CCTK_POINTER_TO_CONST, const CCTK_INT,
const CCTK_INT *, const CCTK_INT *,
const CCTK_INT *, const CCTK_INT *);