Rerun clang-format

This commit is contained in:
Martin
2017-01-03 01:30:38 +01:00
parent 4fa873b0f8
commit 4c36ab0230
7 changed files with 244 additions and 251 deletions

View File

@@ -23,14 +23,13 @@
* THE SOFTWARE.
*
**************************************************************************/
#include "miniz_tinfl.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ------------------- Low-level Decompression (completely independent from all compression API's) */
#define TINFL_MEMCPY(d, s, l) memcpy(d, s, l)
@@ -46,7 +45,8 @@ extern "C" {
status = result; \
r->m_state = state_index; \
goto common_exit; \
case state_index:; \
case state_index: \
; \
} \
MZ_MACRO_END
#define TINFL_CR_RETURN_FOREVER(state_index, result) \
@@ -732,4 +732,3 @@ void tinfl_decompressor_free(tinfl_decompressor *pDecomp)
#ifdef __cplusplus
}
#endif