From 5de12ad388b07e536c9c8ea04683e5e16472651b Mon Sep 17 00:00:00 2001
From: Kimplul <kimi.h.kuparinen@gmail.com>
Date: Wed, 2 Apr 2025 21:13:57 +0300
Subject: fix some warnings with clang

---
 include/ejit/ejit.h | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'include')

diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h
index 2afdc61..b4b20c1 100644
--- a/include/ejit/ejit.h
+++ b/include/ejit/ejit.h
@@ -104,6 +104,7 @@ static inline bool ejit_int_type(enum ejit_type t)
 	case EJIT_POINTER:
 		return true;
 	default:
+		break;
 	}
 
 	return false;
@@ -116,6 +117,7 @@ static inline bool ejit_float_type(enum ejit_type t)
 	case EJIT_DOUBLE:
 		return true;
 	default:
+		break;
 	}
 
 	return false;
-- 
cgit v1.2.3