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_DoubleFactory.cpp
parentf3f3bcc45e701fac4abcfb68a2bbc60e06e6a9f4 (diff)
3D Audio GSoC:
Removing unneeded const from Factory::createReader.
Diffstat (limited to 'intern/audaspace/FX/AUD_DoubleFactory.cpp')
-rw-r--r--intern/audaspace/FX/AUD_DoubleFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/FX/AUD_DoubleFactory.cpp b/intern/audaspace/FX/AUD_DoubleFactory.cpp
index 5b72082f520..e1e6ba50435 100644
--- a/intern/audaspace/FX/AUD_DoubleFactory.cpp
+++ b/intern/audaspace/FX/AUD_DoubleFactory.cpp
@@ -37,7 +37,7 @@ AUD_DoubleFactory::AUD_DoubleFactory(AUD_Reference<AUD_IFactory> factory1, AUD_R
{
}
-AUD_Reference<AUD_IReader> AUD_DoubleFactory::createReader() const
+AUD_Reference<AUD_IReader> AUD_DoubleFactory::createReader()
{
AUD_Reference<AUD_IReader> reader1 = m_factory1->createReader();
AUD_Reference<AUD_IReader> reader2 = m_factory2->createReader();