blob: d9f39348cff78dff1e55e24caf29bc85805e599b (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <functional>
#define CUSTOM_FFF_FUNCTION_TEMPLATE(RETURN, FUNCNAME, ...) \
std::function<RETURN (__VA_ARGS__)> FUNCNAME
|