From b9e916d16e4586c9a8847eb64dcdb6339b88f5a2 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Wed, 24 Jul 2019 13:31:50 -0500 Subject: [PATCH] put conditional include where it belongs --- json.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/json.h b/json.h index 76d1f0f..31c0b40 100644 --- a/json.h +++ b/json.h @@ -31,12 +31,12 @@ extern "C" { #include "json_object_iterator.h" #include "json_c_version.h" -#ifdef __cplusplus -} -#endif - #ifdef TEST #include "test_common.h" #endif +#ifdef __cplusplus +} +#endif + #endif