Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2011-06-15 01:22:22 +0400
committerJoerg Mueller <nexyon@gmail.com>2011-06-15 01:22:22 +0400
commitf8212f4e031a6b3ba12d29830e01d067f2a94273 (patch)
tree940ea17b84647a94aa177219777086d4985e2db4 /intern/audaspace/FX/AUD_IIRFilterFactory.cpp
parentf3f3bcc45e701fac4abcfb68a2bbc60e06e6a9f4 (diff)
3D Audio GSoC:
Removing unneeded const from Factory::createReader.
Diffstat (limited to 'intern/audaspace/FX/AUD_IIRFilterFactory.cpp')
-rw-r--r--intern/audaspace/FX/AUD_IIRFilterFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/FX/AUD_IIRFilterFactory.cpp b/intern/audaspace/FX/AUD_IIRFilterFactory.cpp
index e24a10266c9..f6ccda6f67e 100644
--- a/intern/audaspace/FX/AUD_IIRFilterFactory.cpp
+++ b/intern/audaspace/FX/AUD_IIRFilterFactory.cpp
@@ -39,7 +39,7 @@ AUD_IIRFilterFactory::AUD_IIRFilterFactory(AUD_Reference<AUD_IFactory> factory,
{
}
-AUD_Reference<AUD_IReader> AUD_IIRFilterFactory::createReader() const
+AUD_Reference<AUD_IReader> AUD_IIRFilterFactory::createReader()
{
return new AUD_IIRFilterReader(getReader(), m_b, m_a);
}