File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 77
88using namespace libscratchcpp ;
99
10- LLVMInstruction *LLVMInstructionList::first ()
10+ LLVMInstruction *LLVMInstructionList::first () const
1111{
1212 return m_first.get ();
1313}
1414
15- LLVMInstruction *LLVMInstructionList::last ()
15+ LLVMInstruction *LLVMInstructionList::last () const
1616{
1717 return m_last.get ();
1818}
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ class LLVMInstructionList
1515 LLVMInstructionList () = default ;
1616 LLVMInstructionList (const LLVMInstructionList &) = delete ;
1717
18- LLVMInstruction *first ();
19- LLVMInstruction *last ();
18+ LLVMInstruction *first () const ;
19+ LLVMInstruction *last () const ;
2020
2121 void addInstruction (std::shared_ptr<LLVMInstruction> ins);
2222
You can’t perform that action at this time.
0 commit comments