From 3bc81e2e5fadb652fb39701cc80140809df697c8 Mon Sep 17 00:00:00 2001 From: kimikage Date: Wed, 15 Dec 2010 00:38:22 +0900 Subject: [PATCH] =?utf8?q?delegate=E5=9E=8B=E5=A4=89=E6=95=B0=E3=82=92read?= =?utf8?q?only=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Karinto/Fft.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Karinto/Fft.cs b/Karinto/Fft.cs index bf047c1..8e0cbcb 100755 --- a/Karinto/Fft.cs +++ b/Karinto/Fft.cs @@ -132,12 +132,12 @@ namespace Karinto #endregion #region fields - private static _Malloc Malloc; - private static _Free Free; - private static _PlanDft1d PlanDft1d; - private static _PlanDft2d PlanDft2d; - private static _Execute Execute; - private static _Destroy Destroy; + private static readonly _Malloc Malloc; + private static readonly _Free Free; + private static readonly _PlanDft1d PlanDft1d; + private static readonly _PlanDft2d PlanDft2d; + private static readonly _Execute Execute; + private static readonly _Destroy Destroy; private const int sizeOfComplex = 16; private double* alignedSrc; -- 2.11.0