mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-06 03:34:02 +00:00
16 lines
406 B
C
16 lines
406 B
C
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2018 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define CONCATENATE_TOKENS(x, y) CONCATENATE_TOKENS_IMPL(x, y)
|
|
#define CONCATENATE_TOKENS_IMPL(x, y) x ## y
|
|
|
|
#ifdef __COUNTER__
|
|
#define ANONYMOUS_VARIABLE(str) CONCATENATE_TOKENS(str, __COUNTER__)
|
|
#else
|
|
#define ANONYMOUS_VARIABLE(str) CONCATENATE_TOKENS(str, __LINE__)
|
|
#endif
|