~ubuntu-branches/ubuntu/trusty/coccinelle/trusty

« back to all changes in this revision

Viewing changes to parsing_c/flag_parsing_c.ml

  • Committer: Package Import Robot
  • Author(s): Євгеній Мещеряков
  • Date: 2012-08-19 20:40:52 UTC
  • mfrom: (7.2.8 experimental)
  • Revision ID: package-import@ubuntu.com-20120819204052-8cujknwy6cn8a6h6
Tags: 1.0.0~rc15.deb-1
* New upstream RC 
  - Do not build-depend on libsexplib-camlp4-dev and libextlib-ocaml-dev
    anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
let if0_passing = ref true
170
170
let add_typedef_root = ref true
171
171
 
 
172
(* defined and undefined constants *)
 
173
let add c s = c := (Str.split (Str.regexp ",") s) @ !c
 
174
let defined = ref ([] : string list)
 
175
let undefined = ref ([] : string list)
 
176
 
172
177
let cmdline_flags_parsing_algos () = [
173
178
 
174
179
    "--directive-passing",              Arg.Set cpp_directive_passing,