File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -64,17 +64,17 @@ struct AllocActionFunction {
64
64
// / An AllocAction is a pair of an AllocActionFn and an argument data buffer.
65
65
struct AllocAction {
66
66
AllocAction () = default ;
67
- AllocAction (AllocActionFn AA , WrapperFunctionBuffer ArgData)
68
- : AA(AA ), ArgData(std::move(ArgData)) {}
67
+ AllocAction (AllocActionFn Fn , WrapperFunctionBuffer ArgData)
68
+ : Fn(Fn ), ArgData(std::move(ArgData)) {}
69
69
70
70
[[nodiscard]] WrapperFunctionBuffer operator ()() {
71
- assert (AA && " Attempt to call null action" );
72
- return AA (ArgData.data (), ArgData.size ());
71
+ assert (Fn && " Attempt to call null action" );
72
+ return Fn (ArgData.data (), ArgData.size ());
73
73
}
74
74
75
- explicit operator bool () const noexcept { return !!AA ; }
75
+ explicit operator bool () const noexcept { return !!Fn ; }
76
76
77
- AllocActionFn AA = nullptr ;
77
+ AllocActionFn Fn = nullptr ;
78
78
WrapperFunctionBuffer ArgData;
79
79
};
80
80
You can’t perform that action at this time.
0 commit comments