~ubuntu-branches/debian/sid/ocaml/sid

« back to all changes in this revision

Viewing changes to ocamldoc/odoc_exception.ml

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-04-21 21:35:08 UTC
  • mfrom: (1.1.11 upstream) (12.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110421213508-kg34453aqmb0moha
* Fixes related to -output-obj with g++ (in debian/patches):
  - add Declare-primitive-name-table-as-const-char
  - add Avoid-multiple-declarations-in-generated-.c-files-in
  - fix Embed-bytecode-in-C-object-when-using-custom: the closing
    brace for extern "C" { ... } was missing in some cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
(*                                                                     *)
10
10
(***********************************************************************)
11
11
 
12
 
(* $Id: odoc_exception.ml 5973 2003-11-24 10:44:07Z starynke $ *)
 
12
(* $Id: odoc_exception.ml 9547 2010-01-22 12:48:24Z doligez $ *)
13
13
 
14
14
(** Representation and manipulation of exceptions. *)
15
15
 
18
18
type exception_alias = {
19
19
    ea_name : Name.t ;
20
20
    mutable ea_ex : t_exception option ;
21
 
  } 
 
21
  }
22
22
 
23
23
and t_exception = {
24
24
    ex_name : Name.t ;
27
27
    ex_alias : exception_alias option ;
28
28
    mutable ex_loc : Odoc_types.location ;
29
29
    mutable ex_code : string option ;
30
 
  } 
31
 
 
32
 
 
 
30
  }