Skip to content

Commit

Permalink
Update version to 0.7.2 and add static_assert macro
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Sep 26, 2023
1 parent 1341a30 commit 979e49f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hmmer-reader/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20.2 FATAL_ERROR)
project(
hmmer_reader
VERSION 0.7.1
VERSION 0.7.2
LANGUAGES C)
set(PROJECT_DESCRIPTION "HMMER ASCII file reader.")

Expand Down
4 changes: 4 additions & 0 deletions hmmer-reader/include/hmmer_reader/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
#include <stddef.h>
#include <stdio.h>

#ifndef static_assert
#define static_assert(expr, msg) _Static_assert(expr, msg)
#endif

enum
{
HMR_SYMBOLS_MAX = 32,
Expand Down

0 comments on commit 979e49f

Please sign in to comment.