diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-08 21:02:25 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-08 21:02:25 (GMT) |
commit | c663f8a79c5c47fed8d9f3ec1a1a36401ccbe1ee (patch) | |
tree | 28e8c4e34fdc9de3cfc3f3b037ba6b5ec776a162 /src | |
parent | 4e23c807585ed705173f32e374884a46e4a4f2dd (diff) | |
download | hdf5-c663f8a79c5c47fed8d9f3ec1a1a36401ccbe1ee.zip hdf5-c663f8a79c5c47fed8d9f3ec1a1a36401ccbe1ee.tar.gz hdf5-c663f8a79c5c47fed8d9f3ec1a1a36401ccbe1ee.tar.bz2 |
[svn-r7182] Purpose:
Code cleanup
Description:
Add "lint" control file for PC-Lint 8.0
Diffstat (limited to 'src')
-rwxr-xr-x | src/hdf5.lnt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/hdf5.lnt b/src/hdf5.lnt new file mode 100755 index 0000000..b56fd6e --- /dev/null +++ b/src/hdf5.lnt @@ -0,0 +1,20 @@ +// Turn off warnings about not using the return value from these functions +-esym(534, H5E_clear, H5E_push, H5I_clear_group, H5I_destroy_group) +-esym(534, H5MM_xfree) + +// Don't whine about our use of 'goto' in our error macros +-emacro(801,HGOTO_DONE) + +// Suppress message about "boolean test of a paranthesized assignment" +-e820 + +// Suppress message about "Constant value boolean" in FUNC_ENTER* macros +-emacro(506,FUNC_ENTER_API) +-emacro(506,FUNC_ENTER_NOAPI) + +// Suppress message about "enum constant not used within defaulted switch" +-e788 + +/* So far, the following files have been linted with these options: + H5A.c +*/ |