summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-17 21:56:33 +0000
committerDavid Robillard <d@drobilla.net>2012-05-17 21:56:33 +0000
commitda03dbe262f38fa0cc5eaacd176a4d8efe5029db (patch)
tree3e5279413eb48cff56406e2071b012ef3c3d5dff /ingen
parent34152c9d4c2f4681bb48889c6365e36b9e8bcc8b (diff)
downloadingen-da03dbe262f38fa0cc5eaacd176a4d8efe5029db.tar.gz
ingen-da03dbe262f38fa0cc5eaacd176a4d8efe5029db.tar.bz2
ingen-da03dbe262f38fa0cc5eaacd176a4d8efe5029db.zip
Remove pointless state and constructor from Parser.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4426 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r--ingen/serialisation/Parser.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/ingen/serialisation/Parser.hpp b/ingen/serialisation/Parser.hpp
index 5253a3e4..0240dc9d 100644
--- a/ingen/serialisation/Parser.hpp
+++ b/ingen/serialisation/Parser.hpp
@@ -45,7 +45,7 @@ namespace Serialisation {
*/
class Parser {
public:
- explicit Parser(Shared::World& world);
+ explicit Parser() {}
virtual ~Parser() {}
@@ -67,9 +67,6 @@ public:
boost::optional<Raul::Path> parent = boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol = boost::optional<Raul::Symbol>(),
boost::optional<Properties> data = boost::optional<Properties>());
-
-private:
- Shared::World& _world;
};
} // namespace Serialisation