Mercurial > hg > qm-dsp
view base/Restrict.h @ 495:1bea13b8f951
Style fixes in constant-Q: avoid unsigned, reuse our Window class, fix
comments
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 31 May 2019 18:25:31 +0100 |
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