summaryrefslogtreecommitdiffstats
path: root/src/shared/ResourceImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-17 18:04:49 +0000
committerDavid Robillard <d@drobilla.net>2012-05-17 18:04:49 +0000
commit34152c9d4c2f4681bb48889c6365e36b9e8bcc8b (patch)
treeb4a8dd826c2132945e87e663bce1b9d0a462d750 /src/shared/ResourceImpl.cpp
parent3e4272d71264ef1a251d154c0b1f4dce8a725554 (diff)
downloadingen-34152c9d4c2f4681bb48889c6365e36b9e8bcc8b.tar.gz
ingen-34152c9d4c2f4681bb48889c6365e36b9e8bcc8b.tar.bz2
ingen-34152c9d4c2f4681bb48889c6365e36b9e8bcc8b.zip
Eliminate static variable.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4425 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared/ResourceImpl.cpp')
-rw-r--r--src/shared/ResourceImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/ResourceImpl.cpp b/src/shared/ResourceImpl.cpp
index 622c9c06..bb60da5c 100644
--- a/src/shared/ResourceImpl.cpp
+++ b/src/shared/ResourceImpl.cpp
@@ -103,7 +103,7 @@ ResourceImpl::set_property(const Raul::URI& uri, const Raul::Atom& value) const
const Raul::Atom&
ResourceImpl::get_property(const Raul::URI& uri) const
{
- static const Raul::Atom nil;
+ const Raul::Atom nil;
Properties::const_iterator i = _properties.find(uri);
return (i != _properties.end()) ? i->second : nil;
}