You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got the following error trying to compile in an Xcode project...
"/.../rnnlm-0.4b/fastexp.h:543:11: Constant expression evaluates to 9223372039002259456 which cannot be narrowed to type 'long long'"
Repeated 6 times for the three lines containing "v4sil (0x80000000)"
The macro (line 109) cast as "unsigned long long" but for some reason the compiler is seeing it as "long long" !
I also had issues with "exp10(...)" not recognized but I used "pow(10,...)" instead.
The text was updated successfully, but these errors were encountered:
I got the following error trying to compile in an Xcode project...
"/.../rnnlm-0.4b/fastexp.h:543:11: Constant expression evaluates to 9223372039002259456 which cannot be narrowed to type 'long long'"
Repeated 6 times for the three lines containing "v4sil (0x80000000)"
The macro (line 109) cast as "unsigned long long" but for some reason the compiler is seeing it as "long long" !
I also had issues with "exp10(...)" not recognized but I used "pow(10,...)" instead.
The text was updated successfully, but these errors were encountered: