Mercurial > hg > qm-dsp
view base/Restrict.h @ 515:08bcc06c38ec tip master
Remove fast-math
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 28 Jan 2020 15:27:37 +0000 |
parents | d48276a3ae24 |
children |
line wrap: on
line source
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ #ifndef QM_DSP_RESTRICT_H #define QM_DSP_RESTRICT_H #ifdef _MSC_VER #define QM_R__ __restrict #endif #ifdef __GNUC__ #define QM_R__ __restrict__ #endif #ifndef QM_R__ #define QM_R__ #endif #endif