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: PDLPorters/pdl
base: 7b328d3a203f
Choose a base ref
...
head repository: PDLPorters/pdl
compare: 0cef0a69e174
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Jun 7, 2016

  1. Copy the full SHA
    897bcdf View commit details
    Browse the repository at this point in the history
  2. Fix namespace collision for 'warn' in gsl_integ.pd

    Perl's 'warn' function had been undef'd because of problems with the gsl code's
    'warn' variable. But PDL::PP inserts code into XS files that calls
    Perl's 'warn' function.  To avoid this I removed the #undef warn and
    changed the gsl variable name from warn to gslwarn.
    d-lamb committed Jun 7, 2016
    Copy the full SHA
    1ef579a View commit details
    Browse the repository at this point in the history
  3. Add default 'int' return type to Slatec function prototypes.

    Some function prototypes that get generated into SlatecProtos.h
    have return types float or double, but most were just missing, and
    the compiler assumed them to be int. The function defs all do
    return int, so I just made it explicit.
    d-lamb committed Jun 7, 2016
    Copy the full SHA
    0cef0a6 View commit details
    Browse the repository at this point in the history