We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3fa46 commit 77ed5c8Copy full SHA for 77ed5c8
tests/cpp/fbc-mangle.bas
@@ -3,11 +3,8 @@
3
'' test mapping of basic data types between fbc and g++
4
'' with c++ name mangling
5
6
-#ifdef __FB_64BIT__
7
-
8
- type cxxint as long
9
- type cxxlongint as integer
10
+type cxxint as long
+type cxxlongint as integer
11
/' !!!
12
cxxlongint will currently fail on win64, fbc custom mangles INTEGER and there is
13
no other data type that will return the "m" and "l" suffixes for c's long int.
@@ -17,14 +14,6 @@
17
14
be added to fbc.
18
15
'/
19
16
20
-#else
21
22
- '' 32-bit
23
- type cxxint as integer
24
- type cxxlongint as long
25
26
-#endif
27
28
extern "c++"
29
30
namespace cpp_mangle
0 commit comments