diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-02-22 13:06:00 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-02-22 13:06:00 +0000 |
commit | e9079368fc8aaf7f3dae8d4e98a6756c1fcb913a (patch) | |
tree | e07c3ec75d96a0818adec0e93b9a0c2a715b34ee /src | |
parent | a3fd9da14f1095a8d2409f67d180dc1f2e8d29d7 (diff) |
MARK for debugging
svn path=/trunk/externals/iem/iemmatrix/; revision=16026
Diffstat (limited to 'src')
-rw-r--r-- | src/iemmatrix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/iemmatrix.h b/src/iemmatrix.h index 87f68d2..6d7acea 100644 --- a/src/iemmatrix.h +++ b/src/iemmatrix.h @@ -194,4 +194,9 @@ t_matrixfloat*mtx_doTranspose(t_matrixfloat*output, int row, int col); /* multiply matrix A=[rowA*colA] with matrix B=[rowB*colB]; C=A*B; colA=rowB=colArowB */ t_matrixfloat*mtx_doMultiply(int rowA, t_matrixfloat*A, int colArowB, t_matrixfloat*B, int colB); + +/* for debugging purposes */ +#define MARK startpost("MARK[%s:%d@%s]", __FILE__, __LINE__, __FUNCTION__), post + + #endif |