~ubuntu-branches/ubuntu/oneiric/swig1.3/oneiric

« back to all changes in this revision

Viewing changes to Source/Modules/allocate.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2009-11-15 14:00:28 UTC
  • mfrom: (1.2.9 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091115140028-me7amr2rie8zz1xn
Tags: 1.3.40-2ubuntu1
* Merge from Debian testing (LP: #356529), remaining changes:
  - Drop libchicken-dev from the build-depends (it's in universe)
  - Remove Pike from package description and from configure flags
  - drop "--without-mzscheme", we don't have it in our build-depends
  - use php-config5
  - Clean Runtime/ as well.
  - debian/rules (clean): Remove Lib/ocaml/swigp4.ml.
* debian/rules: Remove hardcoded python version.
* Remove upper limit for python from Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 * Doc/Manual/SWIGPlus.html for details.
12
12
 * ----------------------------------------------------------------------------- */
13
13
 
14
 
char cvsroot_allocate_cxx[] = "$Id: allocate.cxx 10281 2008-02-28 23:14:07Z wsfulton $";
 
14
char cvsroot_allocate_cxx[] = "$Id: allocate.cxx 11583 2009-08-15 23:22:20Z wsfulton $";
15
15
 
16
16
#include "swigmod.h"
17
17
#include "cparse.h"
527
527
    }
528
528
    ParmList *throws = Getattr(n, "throws");
529
529
    if (throws) {
530
 
      /* if there is no an explicit catchlist, 
531
 
         we catch everything in the throwlist */
 
530
      /* if there is no explicit catchlist, we catch everything in the throws list */
532
531
      if (!catchlist) {
533
532
        Setattr(n, "catchlist", throws);
534
533
      }