We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef87fba commit 0260b66Copy full SHA for 0260b66
inline-c-cpp/src/Language/C/Inline/Cpp/Exception.hs
@@ -41,7 +41,7 @@ data CppException
41
| CppNonStdException CppExceptionPtr (Maybe ByteString)
42
43
instance Show CppException where
44
- showsPrec p (CppStdException _ msg typ) = showParen (p >= 11) (showString "CppStdException e " . showsPrec 11 msg . showsPrec 11 typ)
+ showsPrec p (CppStdException _ msg typ) = showParen (p >= 11) (showString "CppStdException e " . showsPrec 11 msg . showChar ' ' . showsPrec 11 typ)
45
showsPrec p (CppHaskellException e) = showParen (p >= 11) (showString "CppHaskellException " . showsPrec 11 e)
46
showsPrec p (CppNonStdException _ typ) = showParen (p >= 11) (showString "CppOtherException e " . showsPrec 11 typ)
47
0 commit comments