Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Foreign/Matlab/Internal.hsc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module Foreign.Matlab.Internal (
MNull, mNullArray, isMNull,
MCell(..),
MStruct(..),
MFun,
MXFun, MFun,
MWSize, MWIndex, MWSignedIndex
) where

Expand Down
1 change: 0 additions & 1 deletion Foreign/Matlab/Runtime.hsc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import System.FilePath (splitFileName, dropExtensions, extSeparator
, (<.>), (</>))
import Foreign.Matlab.Util
import Foreign.Matlab.Internal

import System.IO.Unsafe (unsafePerformIO)

#include "hsc_sym.h"
Expand Down
2 changes: 1 addition & 1 deletion Foreign/Matlab/Runtime/Generic.hs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ mlGenericSetVar :: MLGeneric -> String -> MXArray a -> IO ()
mlGenericSetVar mlg v x = do
b <- createRowVector "base"
v <- createRowVector v
_ <- mlGenericFun mlg "assignin" [anyMXArray b,anyMXArray v,anyMXArray x] 0
[] <- mlGenericFun mlg "assignin" [anyMXArray b,anyMXArray v,anyMXArray x] 0
freeMXArray v
freeMXArray b

Expand Down