vbmithr / ocaml-websocket

Websocket library for OCaml
ISC License
161 stars 44 forks source link

Fix incompatible types error #100

Closed bcc32 closed 6 years ago

bcc32 commented 6 years ago

This change tells the compiler that Websocket_async.Frame.t is the same type as Websocket.Frame.t. Fixes compilation errors when using the modules and types interchangeably, e.g., when using Websocket_async.server with Websocket.Frame.t.

vbmithr commented 6 years ago

Thanks.