Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

SWDEV-366831 - File reorg backward compatibility message changed to #error #52

Merged
merged 1 commit into from
Feb 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/atmi-backward-compat.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ function(create_header_template)
#ifndef @include_guard@
#define @include_guard@

#if defined(_MSC_VER)
#if defined(__GNUC__)
#error \"This file is deprecated. Use file from include path /opt/rocm-ver/include/ and prefix with atmi\"
#else
#pragma message(\"This file is deprecated. Use file from include path /opt/rocm-ver/include/ and prefix with atmi\")
#elif defined(__GNUC__)
#warning \"This file is deprecated. Use file from include path /opt/rocm-ver/include/ and prefix with atmi\"
#endif

@include_statements@
Expand Down