Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit ace8ecf4 authored by gsell's avatar gsell
Browse files

qualifier 'restrict' replaced by '__restrict__'

parent 1d423599
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ private: ...@@ -24,7 +24,7 @@ private:
virtual void readMap(); virtual void readMap();
virtual void freeMap(); virtual void freeMap();
double *restrict FourCoefs_m; double *__restrict__ FourCoefs_m;
double frequency_m; double frequency_m;
double xlrep_m; double xlrep_m;
...@@ -44,4 +44,4 @@ inline bool Astra1DDynamic::isInside(const Vector_t &r) const ...@@ -44,4 +44,4 @@ inline bool Astra1DDynamic::isInside(const Vector_t &r) const
return r(2) >= zbegin_m && r(2) < zend_m; return r(2) >= zbegin_m && r(2) < zend_m;
} }
#endif #endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment