inline-c-cpp 0.4.0.0 → 0.4.0.1
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~inline-c
Dependency ranges changed: inline-c
Files
- cxx-src/HaskellException.cxx +4/−4
- inline-c-cpp.cabal +2/−2
cxx-src/HaskellException.cxx view
@@ -2,14 +2,14 @@ #include "HaskellException.hxx" HaskellException::HaskellException(std::string renderedExceptionIn, void *haskellExceptionStablePtrIn)- : displayExceptionValue(renderedExceptionIn)- , haskellExceptionStablePtr(new HaskellStablePtr(haskellExceptionStablePtrIn))+ : haskellExceptionStablePtr(new HaskellStablePtr(haskellExceptionStablePtrIn))+ , displayExceptionValue(renderedExceptionIn) { } HaskellException::HaskellException(const HaskellException &other)- : displayExceptionValue(other.displayExceptionValue)- , haskellExceptionStablePtr(other.haskellExceptionStablePtr)+ : haskellExceptionStablePtr(other.haskellExceptionStablePtr)+ , displayExceptionValue(other.displayExceptionValue) { }
inline-c-cpp.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: inline-c-cpp-version: 0.4.0.0+version: 0.4.0.1 synopsis: Lets you embed C++ code into Haskell. description: Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build.@@ -21,7 +21,7 @@ exposed-modules: Language.C.Inline.Cpp Language.C.Inline.Cpp.Exceptions build-depends: base >=4.7 && <5- , inline-c >= 0.6.1.0+ , inline-c >= 0.9.0.0 , template-haskell , safe-exceptions , containers