Hi,
I am working on compiling some functionnal Win32 code to x64. I am encoutering the following error:
error #7226: An integer pointer variable has been explicitly given a data type that is not the integer type and kind for an address on the current platform.
Here is an example of the code that gives me this problem:
SUBROUTINE ABCD
IMPLICIT NONE
INTEGER*4 i , ij , j , k , kxx , li
INTEGER pt10
POINTER (pt10,pt10p)
RECORD /NRSTRUC10/ pt10p
I am not quite familiar with the use of pointers in fortran... Can you give me a hint on what to look for to fix this issue ?
Thank you
Philippe