* tools/abidiff.cc (main): Use ABG_ASSERT instead of assert.
* tools/abilint.cc: Likewise.
Signed-off-by: Guillermo E. Martinez <guillermo.e.martinez@oracle.com>
abigail::ctf_reader::read_context_sptr ctxt
= abigail::ctf_reader::create_read_context(opts.file1,
env.get());
-
- assert (ctxt);
+ ABG_ASSERT(ctxt);
c1 = abigail::ctf_reader::read_corpus(ctxt.get(),
c1_status);
}
abigail::ctf_reader::read_context_sptr ctxt
= abigail::ctf_reader::create_read_context(opts.file2,
env.get());
-
- assert (ctxt);
- c2 = abigail::ctf_reader::read_corpus (ctxt.get(),
- c2_status);
+ ABG_ASSERT(ctxt);
+ c2 = abigail::ctf_reader::read_corpus(ctxt.get(),
+ c2_status);
}
else
#endif
abigail::ctf_reader::read_context_sptr ctxt
= abigail::ctf_reader::create_read_context(opts.file_path,
env.get());
-
- assert (ctxt);
- corp = abigail::ctf_reader::read_corpus (ctxt.get(), s);
+ ABG_ASSERT(ctxt);
+ corp = abigail::ctf_reader::read_corpus(ctxt.get(), s);
}
else
#endif