4

ghc 7.4.2 で gtk2hs-buildtools をビルドすると、次の警告が表示されます。

c2hs/toplevel/C2HSConfig.hs:110:1:
    Warning: newtype `CInt' is used in an FFI declaration,
             but its constructor is not in scope.
             This will become an error in GHC 7.6.1.
    When checking declaration:
      foreign import ccall safe "static bitfield_direction" bitfield_direction
        :: CInt

持っているにもかかわらず、FFI呼び出しで同様の警告が表示されますimport Foreign.C.Types(CInt)

この警告を取り除く正しい方法は何ですか?

4

1 に答える 1

5
import Foreign.C.Types(CInt(..))

コンストラクタを取得します。

于 2012-06-20T03:11:10.897 に答える