"vscode:/vscode.git/clone" did not exist on "879880f5f6f4f6fe94f44c7693c76cad3c8d3590"
instruction_ref.hpp 233 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MIGRAPH_GUARD_INSTRUCTION_REF_HPP
#define MIGRAPH_GUARD_INSTRUCTION_REF_HPP

#include <list>

namespace migraph {

struct instruction;
using instruction_ref = std::list<instruction>::iterator;

} // namespace migraph

#endif