Skip to content

Commit 43c61c9

Browse files
committed
Remove misleading static_assert
1 parent 86aa94e commit 43c61c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plugins/BoundAuthPlugin/BoundAuth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ PLUGINAPI int PLUGINCALL Initialize(struct pluginlink *link, int argc, char **ar
324324
}
325325

326326
/* Ensure the alphabet is valid. */
327-
static_assert(sizeof(char) == sizeof(uint8_t));
327+
/*static_assert(sizeof(char) == sizeof(uint8_t), "");*/
328328
/*static_assert((uint8_t)(255 + 1) == 0);*/
329329
uint8_t seen[32] = { 0 };
330330
for (size_t i = 0; i < PluginConfig.alphabet.len; ++i) {

0 commit comments

Comments
 (0)