Having a devil of a time and Structure's docs aren't helping. Trying to compile their stuff in a Swift project. It gets hung up on a struct definition. Any ideas as to what might be wrong? Shot in the dark?
Asked
Active
Viewed 83 times
0
-
2All header files included from the Swift bridging header file are compiled as C files. You cannot import C++ declarations into Swift. – Martin R Apr 26 '17 at 21:07
-
Not even Objective-C++? – ZaBlanc Apr 26 '17 at 21:47
-
1No (Objective-C++ is an extension of C++). Compare http://stackoverflow.com/q/24042774/1187415. – Martin R Apr 26 '17 at 21:53