Minor build tweak

This commit is contained in:
Chris Cannam
2015-01-28 21:01:25 +00:00
parent eaf64631d5
commit 51bf5125ea
2 changed files with 7 additions and 3 deletions

View File

@@ -29,9 +29,13 @@
#define R__ __restrict
#endif
#ifdef __clang__
#define R__ __restrict__
#else
#ifdef __GNUC__
#define R__ __restrict__
#endif
#endif
#ifndef R__
#define R__