summaryrefslogtreecommitdiffstats
path: root/src/shared/Store.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/shared/Store.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared/Store.cpp')
-rw-r--r--src/shared/Store.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/shared/Store.cpp b/src/shared/Store.cpp
index fc366376..8fd4c578 100644
--- a/src/shared/Store.cpp
+++ b/src/shared/Store.cpp
@@ -29,7 +29,6 @@ using namespace Raul;
namespace Ingen {
namespace Shared {
-
void
Store::add(GraphObject* o)
{
@@ -48,7 +47,6 @@ Store::add(GraphObject* o)
}
}
-
Store::const_iterator
Store::children_begin(SharedPtr<Shared::GraphObject> o) const
{
@@ -58,7 +56,6 @@ Store::children_begin(SharedPtr<Shared::GraphObject> o) const
return parent;
}
-
Store::const_iterator
Store::children_end(SharedPtr<Shared::GraphObject> o) const
{
@@ -67,7 +64,6 @@ Store::children_end(SharedPtr<Shared::GraphObject> o) const
return find_descendants_end(parent);
}
-
SharedPtr<Shared::GraphObject>
Store::find_child(SharedPtr<Shared::GraphObject> parent, const string& child_name) const
{
@@ -81,7 +77,6 @@ Store::find_child(SharedPtr<Shared::GraphObject> parent, const string& child_nam
return SharedPtr<Shared::GraphObject>();
}
-
unsigned
Store::child_name_offset(const Raul::Path& parent,
const Raul::Symbol& symbol,
@@ -105,6 +100,5 @@ Store::child_name_offset(const Raul::Path& parent,
return offset;
}
-
} // namespace Shared
} // namespace Ingen