Browse Source

FindMatlab: Fix compilation error in one specific test configuration.

`matlab_wrapper2.cpp` failed to compile in one specific test configuration.
I've copied an odd workaround from `matlab_wrapper1.cpp`, which doesn't fail
to compile. I presume this workaround was meant to address this issue, but
can't verify this locally.
pull/324/head
Cris Luengo 7 years ago
parent
commit
ee73e733e4
  1. 6
      Tests/FindMatlab/matlab_wrapper2.cpp

6
Tests/FindMatlab/matlab_wrapper2.cpp

@ -1,3 +1,9 @@
// simple workaround to some compiler specific problems
// see
// http://stackoverflow.com/questions/22367516/mex-compile-error-unknown-type-name-char16-t/23281916#23281916
#include <algorithm>
#include "mex.h"
// This test uses the new complex-interleaved C API (R2018a and newer)

Loading…
Cancel
Save