mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
aa2597d13b
* StackFrameType() is removed. * StackFrame() is introduced in its place. * Use StackFrame().Type() to acess the stack frame type.
17 lines
354 B
C++
17 lines
354 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/Model/Type.h"
|
|
|
|
#include "revng/Model/Generated/Early/StackFrame.h"
|
|
|
|
class model::StackFrame : public model::generated::StackFrame {
|
|
public:
|
|
using generated::StackFrame::StackFrame;
|
|
};
|
|
|
|
#include "revng/Model/Generated/Late/StackFrame.h"
|