diff options
author | David Robillard <d@drobilla.net> | 2013-08-20 15:33:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-08-20 15:33:04 +0000 |
commit | a8de1780d2dec9e1a933e032a2ac6c66719d30d9 (patch) | |
tree | 967ae95d8d955b12ef19df2d02c19cdeebe25829 | |
parent | 4959c454bdfe8951997b0dbc553b8ca51b964c90 (diff) | |
download | sord-a8de1780d2dec9e1a933e032a2ac6c66719d30d9.tar.gz sord-a8de1780d2dec9e1a933e032a2ac6c66719d30d9.tar.bz2 sord-a8de1780d2dec9e1a933e032a2ac6c66719d30d9.zip |
Remove unused members
git-svn-id: http://svn.drobilla.net/sord/trunk@289 3d64ff67-21c5-427c-a301-fe4f08042e5a
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | sord/sordmm.hpp | 7 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 9 insertions, 6 deletions
@@ -1,3 +1,9 @@ +sord (0.12.1) unstable; + + * sordmm.hpp: Remove unused members + + -- David Robillard <d@drobilla.net> Tue, 20 Aug 2013 09:55:01 -0400 + sord (0.12.0) stable; * Update to waf 1.7.9 and autowaf r90 (install docs to versioned directory) diff --git a/sord/sordmm.hpp b/sord/sordmm.hpp index b98afc7..85143f7 100644 --- a/sord/sordmm.hpp +++ b/sord/sordmm.hpp @@ -473,10 +473,8 @@ public: inline World& world() const { return _world; } private: - World& _world; - Node _base; - SerdWriter* _writer; - size_t _next_blank_id; + World& _world; + Node _base; }; /** Create an empty in-memory RDF model. @@ -488,7 +486,6 @@ Model::Model(World& world, bool graphs) : _world(world) , _base(world, Node::URI, base_uri) - , _writer(NULL) { _c_obj = sord_new(_world.world(), indices, graphs); } @@ -10,7 +10,7 @@ import waflib.extras.autowaf as autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SORD_VERSION = '0.12.0' +SORD_VERSION = '0.12.1' SORD_MAJOR_VERSION = '0' # Mandatory waf variables |