From e793add4d042c88225469f60b32963596618fe67 Mon Sep 17 00:00:00 2001 From: Christopher Arndt Date: Thu, 6 Oct 2022 05:11:25 +0200 Subject: [PATCH] fix: make ClientT and PortT distinct types Signed-off-by: Christopher Arndt --- jacket.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jacket.nim b/jacket.nim index 66d0f32..7e3b3de 100644 --- a/jacket.nim +++ b/jacket.nim @@ -38,9 +38,9 @@ type PortTypeIdT* = culong type - ClientT = object + ClientT = distinct object ClientTPtr* = ptr ClientT - PortT = object + PortT = distinct object PortTPtr* = ptr PortT