diff --git a/README.md b/README.md index aeee903..6d9ec61 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,19 @@ for Doxygen run: sudo apt install doxygen graphviz ``` +#### Fedora (`dnf`) + +On Debian-based distributions, you can install dependencies using the following command: +```shell +sudo dnf install build-essential g++ cmake ninja-build glew-devel valgrind +git submodule update --init --recursive +``` + +for Doxygen run: +```shell +sudo apt install doxygen graphviz +``` +
diff --git a/include/fennec/lang/assert.h b/include/fennec/lang/assert.h index 1dc7c2a..fe799fa 100644 --- a/include/fennec/lang/assert.h +++ b/include/fennec/lang/assert.h @@ -84,7 +84,7 @@ void _assert_impl(const char* expression, const char* file, int line, const char } #if FENNEC_RELEASE -#define assertd(expression, description) (0) +#define assertd(expression, description) #else #define assertd(expression, description) assert(expression, description) #endif