fml  0.1-0
Fused Matrix Library
restrict.hh
1 // This file is part of fml which is released under the Boost Software
2 // License, Version 1.0. See accompanying file LICENSE or copy at
3 // https://www.boost.org/LICENSE_1_0.txt
4 
5 #ifndef FML__INTERNALS_RESTRICT_H
6 #define FML__INTERNALS_RESTRICT_H
7 
8 
9 #ifndef restrict
10 #define restrict __restrict__
11 #endif
12 
13 
14 #endif