Files
compute-runtime/shared/source/debugger/DebuggerStateSaveHeader.h
Jaroslaw Warchulski cc79a136c9 refactor: do not use C headers
Signed-off-by: Jaroslaw Warchulski <jaroslaw.warchulski@intel.com>
2025-11-25 12:07:50 +01:00

23 lines
430 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "config.h"
#include <cstdint>
#ifdef BRANCH_TYPE
#define STRINGIFY_HELPER(x) #x
#define STRINGIFY(x) STRINGIFY_HELPER(x)
// clang-format off
#define BRANCH_HEADER_PATH STRINGIFY(BRANCH_TYPE/StateSaveAreaHeaderWrapper.h)
// clang-format on
#include BRANCH_HEADER_PATH
#else
#include "StateSaveAreaHeaderWrapper.h"
#endif