Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions include/IECore/StreamIndexedIO.h
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,11 @@ class StreamIndexedIO : public IndexedIO

StreamFile &streamFile() const;

NodePtr m_node;

private :

// \todo Either rename Node to MemberData or add it's member here and save one raw pointer.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should definitely do this before merging - the whole Node vs NodeBase discrepancy is quite confusing.

Node *m_node;

void setRoot( const IndexedIO::EntryIDList &root );

};
Expand Down
Loading