diff options
author | Max Kellermann <max@duempel.org> | 2013-01-10 18:18:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-10 18:18:14 +0100 |
commit | 3dd38e7b7f7292caf91675a48076f7bba40ed309 (patch) | |
tree | f433fc0ce6604974ae94917eef4e0a21b73aab12 /src/utils.h | |
parent | 3711a9765775d584f8e5f94156ce384ad0d3dae7 (diff) | |
download | mpd-3dd38e7b7f7292caf91675a48076f7bba40ed309.tar.gz mpd-3dd38e7b7f7292caf91675a48076f7bba40ed309.tar.xz mpd-3dd38e7b7f7292caf91675a48076f7bba40ed309.zip |
decoder/wavpack: convert to C++
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/utils.h b/src/utils.h index ba7307ded..059d44fa3 100644 --- a/src/utils.h +++ b/src/utils.h @@ -22,17 +22,6 @@ #include "gerror.h" -#include <stdbool.h> - -#ifndef assert_static -/* Compile time assertion developed by Ralf Holly */ -/* http://pera-software.com/articles/compile-time-assertions.pdf */ -#define assert_static(e) \ - do { \ - enum { assert_static__ = 1/(e) }; \ - } while (0) -#endif /* !assert_static */ - char * parsePath(const char *path, GError **error_r); |