aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2012-10-23 14:33:56 -0400
committerErik Schnetter <schnetter@gmail.com>2012-10-23 14:33:56 -0400
commit05f213b500cccb3aae0eb97ee775414ec077f713 (patch)
tree30cab12a0bfae411c73f3476f998455b303149f7
parentf174d1c9a6832e671008c0f9e72693dd25bf1950 (diff)
CarpetLib: Remove restrict qualifier from pointer cast
-rw-r--r--Carpet/CarpetLib/src/timestat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Carpet/CarpetLib/src/timestat.cc b/Carpet/CarpetLib/src/timestat.cc
index 19211e027..e35fc3b43 100644
--- a/Carpet/CarpetLib/src/timestat.cc
+++ b/Carpet/CarpetLib/src/timestat.cc
@@ -544,7 +544,7 @@ namespace CarpetLib {
void cycleclock_set (int const timernum, void * const data_,
cTimerVal * const vals)
{
- t_cycleclock & data = * static_cast<t_cycleclock * restrict> (data_);
+ t_cycleclock & data = * static_cast<t_cycleclock *> (data_);
data.reset(); // punt
data.total = vals[0].val.d;