c++ Programming Glossary: lint
Why Switch/Case and not If/Else If? http://stackoverflow.com/questions/1028437/why-switch-case-and-not-if-else-if to place a special comment FALLTHROUGH for such cases lint recognises it and doesn't complain without this comment it does..
How to supress specific warnings in g++ http://stackoverflow.com/questions/487108/how-to-supress-specific-warnings-in-g but not all of them. Something like what you can do with lint disable specific messages. Is there a built in way in gcc to..
C/C++: Detecting superfluous #includes? http://stackoverflow.com/questions/614794/c-c-detecting-superfluous-includes directives and suggest which ones I can safely remove Does lint do this maybe c c refactoring include dependencies share..
C/C++ Free alternative to Lint? [closed] http://stackoverflow.com/questions/632057/c-c-free-alternative-to-lint my C code like Lint does. Any hints c c code analysis lint share improve this question Try cppcheck found here http..
Are C++ static code analyis tools worth it? http://stackoverflow.com/questions/639694/are-c-static-code-analyis-tools-worth-it it reports. If the code is clean then the time to look at lint tools is now. If the code has many warnings... prioritize and..
How can I create directory tree in C++/Linux? http://stackoverflow.com/questions/675039/how-can-i-create-directory-tree-in-c-linux up for Windows inc mode_t typedef struct stat Stat #ifndef lint Prevent over aggressive optimizers from eliminating ID string.. Id mkpath.c v 1.13 2012 07 15 00 40 37 jleffler Exp #endif lint static int do_mkdir const char path mode_t mode Stat st int..
Of Memory Management, Heap Corruption, and C++ http://stackoverflow.com/questions/7525/of-memory-management-heap-corruption-and-c end. Are you compiling wall If not do so. Find yourself a lint tool like PC Lint . A small app like yours might fit in the.. like PC Lint . A small app like yours might fit in the PC lint demo page meaning no purchase for you Check you're NULLing out..
Should I prefer pointers or references in member data? http://stackoverflow.com/questions/892133/should-i-prefer-pointers-or-references-in-member-data for updating a part of C. I ran the code through lint and it whinged about the reference member lint#1725 . This talks.. through lint and it whinged about the reference member lint#1725 . This talks about taking care over default copy and assignments..
A free tool to check C/C++ source code against a set of coding standards? [closed] http://stackoverflow.com/questions/93260/a-free-tool-to-check-c-c-source-code-against-a-set-of-coding-standards I can't seem to find one for C C . I am not looking for a lint like static code analyzer I only would like to check against..
Tools to find included headers which are unused? [closed] http://stackoverflow.com/questions/1301850/tools-to-find-included-headers-which-are-unused find included headers which are unused closed I know PC Lint can tell you about headers which are included but not used...
Destructors for C++ Interface-like classes http://stackoverflow.com/questions/2691611/destructors-for-c-interface-like-classes for C Interface like classes Starting to use PC Lint on an existing code base fear and trepidation . One thing that..
C/C++ Free alternative to Lint? [closed] http://stackoverflow.com/questions/632057/c-c-free-alternative-to-lint C Free alternative to Lint closed I'm interested in a free tool that can statically check.. in a free tool that can statically check my C code like Lint does. Any hints c c code analysis lint share improve this..
Are C++ static code analyis tools worth it? http://stackoverflow.com/questions/639694/are-c-static-code-analyis-tools-worth-it 100 000 warnings from the compiler... no point in running Lint tools on that code base. Using Lint tools right means buying.. no point in running Lint tools on that code base. Using Lint tools right means buying into a better process which is a good.. code has none or at least very few warnings then look at Lint tools. So Lint tools are not going to help a poor code base..
Of Memory Management, Heap Corruption, and C++ http://stackoverflow.com/questions/7525/of-memory-management-heap-corruption-and-c wall If not do so. Find yourself a lint tool like PC Lint . A small app like yours might fit in the PC lint demo page..
/MT and /MD builds crashing, but only when debugger isn't attached: how to debug? [duplicate] http://stackoverflow.com/questions/811951/mt-and-md-builds-crashing-but-only-when-debugger-isnt-attached-how-to-debug to manual investigation of the code or feeding this to PC Lint and combing through its output any suggestions on how to effectively..
|