Mercurial > hg > qm-dsp
view base/Restrict.h @ 511:15cce5df8366
Correct Free Software Foundation address
author | Guido Aulisi <guido.aulisi@gmail.com> |
---|---|
date | Mon, 07 Oct 2019 08:53:22 +0200 |
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