What is the best practice in Fortran to suppress warning messages like:
remark #7712: This variable has not been used.
for just one particular variable (imagine function in API that we do not want to break)?
Note: I do not want to suppress all warnings for a file
Note2: Something similar for gcc: __attribute__((__unused__))
or other common C practice with MACRO
Note3: I am particularly interested in ifort, but multi-compiler would be better.