Metadata-Version: 1.1
Name: gccanalyze
Version: 0.1.1
Summary: Do static analysis with GCC.
Home-page: https://github.com/myint/gccanalyze
Author: myint
Author-email: UNKNOWN
License: Expat License
Description: ==========
        gccanalyze
        ==========
        
        Do static analysis with GCC.
        
        .. image:: https://secure.travis-ci.org/myint/gccanalyze.png
           :target: https://secure.travis-ci.org/myint/gccanalyze
           :alt: Build status
        
        
        -------
        Example
        -------
        
        Only interesting shadowing cases are shown::
        
            $ gccanalyze bad.cc
        
            bad.cc: In function 'int main()':
            bad.cc:5:19: warning: declaration of 'foo' shadows a previous local [-Wshadow]
            bad.cc:3:15: warning: shadowed declaration is here [-Wshadow]
            bad.cc:5:19: warning: unused variable 'foo' [-Wunused-variable]
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
