9 lines
231 B
C++
9 lines
231 B
C++
// Copyright (c) 2023 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
|
|
#define MACRO_STRINGIFY_RAW(x) #x
|
|
#define MACRO_STRINGIFY(x) MACRO_STRINGIFY_RAW(x) |