aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@2e825fa2-fb71-486d-8b7f-a5ff3f0f6cb8>2005-01-14 12:46:34 +0000
committerschnetter <schnetter@2e825fa2-fb71-486d-8b7f-a5ff3f0f6cb8>2005-01-14 12:46:34 +0000
commitd72fd6f339c8b57d6bd3944ef4009e811acc745e (patch)
treea49f42241f2bf5f09be74ef95cd1303615f033cb
parentcf8d9f404e3e1d81e6ae425a7f4c495f074f7399 (diff)
Remove "restrict" keyword that was visible to C++.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/Slab/trunk@38 2e825fa2-fb71-486d-8b7f-a5ff3f0f6cb8
-rw-r--r--src/slab.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/slab.h b/src/slab.h
index dfed6ca..da4fbfb 100644
--- a/src/slab.h
+++ b/src/slab.h
@@ -90,14 +90,14 @@ struct xferinfo {
int flip;
};
-int Slab_Transfer (cGH const * restrict const cctkGH,
- int const dim,
- struct xferinfo const * restrict const xferinfo,
- int const options,
- int const srctype,
- void const * const srcptr,
- int const dsttype,
- void * const dstptr);
+int Slab_Transfer (cGH const * const cctkGH,
+ int const dim,
+ struct xferinfo const * const xferinfo,
+ int const options,
+ int const srctype,
+ void const * const srcptr,
+ int const dsttype,
+ void * const dstptr);
#ifdef __cplusplus
}