1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2025-01-03 18:16:22 +01:00

Merge branch 'master' into cppcheck

This commit is contained in:
Anthony Scemama 2023-05-05 13:37:58 +02:00
commit 25780f9c16

View File

@ -34,12 +34,12 @@
num variable is modified by address num variable is modified by address
*/ */
/* Return num variables as part of the output tuple */ /* Return num variables as part of the output tuple */
%apply int *OUTPUT { int32_t* const num}; %apply int32_t *OUTPUT { int32_t* const num};
%apply int *OUTPUT { int64_t* const num}; %apply int64_t *OUTPUT { int64_t* const num};
%apply int *OUTPUT { int32_t* const num_up}; %apply int32_t *OUTPUT { int32_t* const num_up};
%apply int *OUTPUT { int32_t* const num_dn}; %apply int32_t *OUTPUT { int32_t* const num_dn};
%apply int *OUTPUT { int64_t* const num_up}; %apply int64_t *OUTPUT { int64_t* const num_up};
%apply int *OUTPUT { int64_t* const num_dn}; %apply int64_t *OUTPUT { int64_t* const num_dn};
%apply float *OUTPUT { float* const num}; %apply float *OUTPUT { float* const num};
%apply double *OUTPUT { double* const num}; %apply double *OUTPUT { double* const num};
/* Return TREXIO exit code from trexio_open as part of the output tuple */ /* Return TREXIO exit code from trexio_open as part of the output tuple */