From c4bc489cb430aac1397d6f79bd1ceec5d2c322a9 Mon Sep 17 00:00:00 2001
From: Dusan Jovic <dusan.jovic@noaa.gov>
Date: Thu, 25 Apr 2024 12:26:01 +0000
Subject: [PATCH] Explicitly diasable remark 8291

---
 cmake/Intel.cmake | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake
index a18ff15fc2..73564f1783 100644
--- a/cmake/Intel.cmake
+++ b/cmake/Intel.cmake
@@ -7,6 +7,9 @@ set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462")
 # remark #7712: This variable has not been used.
 set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712")
 
+# remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'.
+set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 8291")
+
 if(CMAKE_Platform STREQUAL "derecho.intel")
   set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries")
 endif()