"test/vscode:/vscode.git/clone" did not exist on "935cda944b82d4828e9efb6606cd449afa4cd71c"
instruction_ref.hpp 255 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
#ifndef MIGRAPH_GUARD_INSTRUCTION_REF_HPP
#define MIGRAPH_GUARD_INSTRUCTION_REF_HPP

#include <list>
5
#include <functional>
Paul's avatar
Paul committed
6
7
8
9
10
11
12
13
14

namespace migraph {

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

} // namespace migraph

#endif