[ https://issues.apache.org/jira/browse/HAWQ-1230?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Paul Guo updated HAWQ-1230: --------------------------- Description: Saw similar warning: be-secure.c:323:1: warning: unused function 'report_commerror' [-Wunused-function] One of the reason is that the callers are not compiled with some configuration options. Add the macro for gcc attribute below to surpress these kind of warnings. #define __MAYBE_UNUSED __attribute__((used)) was: Saw similar warning: be-secure.c:323:1: warning: unused function 'report_commerror' [-Wunused-function] One of the reason is that the callers are not compiled with some configuration options. Add the macro for gcc attribute below to surpress these kind of warnings. #define __MAYBE_UNUSED_FUNC __attribute__((used)) > Introduce macro __MAYBE_UNUSED to surpress "unused funtion" warnings. > --------------------------------------------------------------------- > > Key: HAWQ-1230 > URL: https://issues.apache.org/jira/browse/HAWQ-1230 > Project: Apache HAWQ > Issue Type: Bug > Reporter: Paul Guo > Assignee: Paul Guo > > Saw similar warning: > be-secure.c:323:1: warning: unused function 'report_commerror' > [-Wunused-function] > One of the reason is that the callers are not compiled with some > configuration options. > Add the macro for gcc attribute below to surpress these kind of warnings. > #define __MAYBE_UNUSED __attribute__((used)) -- This message was sent by Atlassian JIRA (v6.3.4#6332)