Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/flickernoise
base: d463e17
Choose a base ref
...
head repository: m-labs/flickernoise
compare: 7a57cc5
Choose a head ref
  • 5 commits
  • 67 files changed
  • 1 contributor

Commits on Dec 12, 2011

  1. flickernoise: use -Wstrict-prototypes

    With all the little changes that are needed to get an almost clean
    compile.
    
    /opt/rtems-4.11/lm32-rtems4.11/milkymist/lib/include/lop/lop_lowlevel.h
    is the only problem left.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    5d8e839 View commit details
    Browse the repository at this point in the history
  2. flickernoise: use -Wmissing-prototypes

    Again, with the cleanup that comes from it.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    8d7d53d View commit details
    Browse the repository at this point in the history
  3. flickernoise: use -Wold-style-declaration

    We just had one case of "static" not being the first item, in
    bandfilters.h. Updated the script generating it and then re-generated
    the file.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    911ca23 View commit details
    Browse the repository at this point in the history
  4. flickernoise: use -Wold-style-definition

    This one catches all the old-style definitions with ANSI-conformant
    declarations, e.g.,
    
    int foo(void);
    
    ...
    
    int foo()
    {
    	...
    }
    
    Due to -Wstrict-prototypes and -Wmissing-prototypes, we're already
    reasonably sure that this can't cause trouble. But better safe than
    sorry.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    98e96e7 View commit details
    Browse the repository at this point in the history
  5. flickernoise: improve quiet mode of Makefile

    This patch restructures the verbosity control to make it more
    readable and then adds $(GEN), of any remaining type of file
    generation.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    7a57cc5 View commit details
    Browse the repository at this point in the history