Mercurial > hg > qm-dsp
view base/Restrict.h @ 484:d48276a3ae24
Add emacs/vi indent directives
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 31 May 2019 12:09:58 +0100 |
parents | 64fc3009d0a3 |
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