aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-04-02 21:13:57 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-04-02 21:13:57 +0300
commit5de12ad388b07e536c9c8ea04683e5e16472651b (patch)
tree93b3e1b5bb86bf1dfc5aa878914e3a9bc771ba6b /include
parentd8f9699debd435da5e1aef22c94c47154be4e2be (diff)
downloadejit-5de12ad388b07e536c9c8ea04683e5e16472651b.tar.gz
ejit-5de12ad388b07e536c9c8ea04683e5e16472651b.zip
fix some warnings with clang
Diffstat (limited to 'include')
-rw-r--r--include/ejit/ejit.h2
1 files changed, 2 insertions, 0 deletions
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;