Tweaked multiline ifdef style
Prefixing with operators greatly improves multiline expression readability, IMO.
This commit is contained in:
+5
-5
@@ -118,11 +118,11 @@
|
||||
#ifndef LFS3_NO_ASSERT
|
||||
#include <assert.h>
|
||||
#endif
|
||||
#if !defined(LFS3_NO_DEBUG) || \
|
||||
!defined(LFS3_NO_INFO) || \
|
||||
!defined(LFS3_NO_WARN) || \
|
||||
!defined(LFS3_NO_ERROR) || \
|
||||
defined(LFS3_YES_TRACE)
|
||||
#if !defined(LFS3_NO_DEBUG) \
|
||||
|| !defined(LFS3_NO_INFO) \
|
||||
|| !defined(LFS3_NO_WARN) \
|
||||
|| !defined(LFS3_NO_ERROR) \
|
||||
|| defined(LFS3_YES_TRACE)
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user