For consistency with the other modules (Python, Ruby and JS), allow including <std_complex.i> directly when using C# too instead of including <complex.i> which only works in C++ mode (i.e. when using std::complex) anyhow with C# for now.
5 lines
109 B
OpenEdge ABL
5 lines
109 B
OpenEdge ABL
#ifdef __cplusplus
|
|
%include <std_complex.i>
|
|
#else
|
|
#error C# module only supports complex in C++ mode.
|
|
#endif
|