Commit 931d92f5 authored by Bob Kimball's avatar Bob Kimball

address review comments

parent cb901c1f
...@@ -46,6 +46,7 @@ namespace ngraph ...@@ -46,6 +46,7 @@ namespace ngraph
size_t get_arg_index() const { return m_arg_index; } size_t get_arg_index() const { return m_arg_index; }
size_t get_index() const { return m_index; } size_t get_index() const { return m_index; }
const Output& get_output() const { return m_output; } const Output& get_output() const { return m_output; }
Output& get_output() { return m_output; }
protected: protected:
Node* m_node; // The node we are an input for Node* m_node; // The node we are an input for
......
...@@ -26,6 +26,8 @@ namespace ngraph ...@@ -26,6 +26,8 @@ namespace ngraph
// Describes an output tensor of an op // Describes an output tensor of an op
class Output class Output
{ {
// For some odd reason emplace_back is requiring a copy constructor
// it should not. See issue #111 for details
// Output(const Output&) = delete; // Output(const Output&) = delete;
// Output& operator=(const Output&) = delete; // Output& operator=(const Output&) = delete;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment