Skip to content

Commit 77ed5c8

Browse files
dkljayrm
authored andcommitted
Adjust C++ mangling test for new Integer/Long mangling
1 parent 4a3fa46 commit 77ed5c8

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

tests/cpp/fbc-mangle.bas

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
'' test mapping of basic data types between fbc and g++
44
'' with c++ name mangling
55

6-
#ifdef __FB_64BIT__
7-
8-
type cxxint as long
9-
type cxxlongint as integer
10-
6+
type cxxint as long
7+
type cxxlongint as integer
118
/' !!!
129
cxxlongint will currently fail on win64, fbc custom mangles INTEGER and there is
1310
no other data type that will return the "m" and "l" suffixes for c's long int.
@@ -17,14 +14,6 @@
1714
be added to fbc.
1815
'/
1916

20-
#else
21-
22-
'' 32-bit
23-
type cxxint as integer
24-
type cxxlongint as long
25-
26-
#endif
27-
2817
extern "c++"
2918

3019
namespace cpp_mangle

0 commit comments

Comments
 (0)