From 9f278d12b1adb38e95497c1cdba70e6eafb13a53 Mon Sep 17 00:00:00 2001 From: "daeken.kwon" Date: Fri, 29 Apr 2016 11:00:45 +0900 Subject: [PATCH] stdassert.h is not standard-compliant. Change this to assert.h Change-Id: I7034df1b22b2040815bdc06521921814e5a09998 Signed-off-by: daeken.kwon Reviewed-on: https://gerrit.iotivity.org/gerrit/7975 Tested-by: jenkins-iotivity Reviewed-by: Jon A. Cruz --- resource/c_common/platform_features.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource/c_common/platform_features.h b/resource/c_common/platform_features.h index 8f39e19..3f712a3 100644 --- a/resource/c_common/platform_features.h +++ b/resource/c_common/platform_features.h @@ -35,7 +35,7 @@ #endif #if (__STDC_VERSION__ >= 201112L) - #include + #include #define OC_STATIC_ASSERT(condition, msg) static_assert(condition, msg) #else #define OC_STATIC_ASSERT(condition, msg) ((void)sizeof(char[2*!!(condition) - 1])) -- 2.7.4