Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
e865be95
Commit
e865be95
authored
Mar 24, 2015
by
James Zern
Committed by
Gerrit Code Review
Mar 24, 2015
Browse files
Merge "fix static analysis warnings related to CHECK_MEM_ERROR"
parents
84ec68d2
3ab1c022
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpx/internal/vpx_codec_internal.h
View file @
e865be95
...
...
@@ -425,10 +425,18 @@ struct vpx_internal_error_info {
jmp_buf
jmp
;
};
#define CLANG_ANALYZER_NORETURN
#if defined(__has_feature)
#if __has_feature(attribute_analyzer_noreturn)
#undef CLANG_ANALYZER_NORETURN
#define CLANG_ANALYZER_NORETURN __attribute__((analyzer_noreturn))
#endif
#endif
void
vpx_internal_error
(
struct
vpx_internal_error_info
*
info
,
vpx_codec_err_t
error
,
const
char
*
fmt
,
...);
...)
CLANG_ANALYZER_NORETURN
;
#ifdef __cplusplus
}
// extern "C"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment