Added Windows-specific configuration lookup for linker paths

This commit is contained in:
hbristow
2013-08-05 14:49:12 +10:00
parent dfda79e673
commit ecb506842b
3 changed files with 4 additions and 9 deletions

View File

@@ -144,19 +144,13 @@ namespace Matlab {
static const mxClassID ScalarType = mxDOUBLE_CLASS;
static std::string ToString() { return "double"; }
};
// size_t
template<> class Traits<size_t> {
public:
static const mxClassID ScalarType = (sizeof(size_t) == 4) ? mxUINT32_CLASS : mxUINT64_CLASS;
static std::string ToString() { return "size_t"; }
};
// char
template<> class Traits<char> {
public:
static const mxClassID ScalarType = mxCHAR_CLASS;
static std::string ToString() { return "char"; }
};
// char
// inherited type
template<> class Traits<Matlab::InheritType> {
public:
static std::string ToString() { return "Inherited type"; }