libvirt/src/interface
Michal Privoznik 10f94828ea virobject: Introduce VIR_CLASS_NEW() macro
So far we are repeating the following lines over and over:

  if (!(virSomeObjectClass = virClassNew(virClassForObject(),
                             "virSomeObject",
                             sizeof(virSomeObject),
                             virSomeObjectDispose)))
      return -1;

While this works, it is impossible to do some checking. Firstly,
the class name (the 2nd argument) doesn't match the name in the
code in all cases (the 3rd argument). Secondly, the current style
is needlessly verbose. This commit turns example into following:

  if (!(VIR_CLASS_NEW(virSomeObject,
                      virClassForObject)))
      return -1;

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
2018-04-18 10:04:55 +02:00
..
interface_backend_netcf.c virobject: Introduce VIR_CLASS_NEW() macro 2018-04-18 10:04:55 +02:00
interface_backend_udev.c driver: ensure NULL URI isn't passed to drivers with whitelisted URIs 2018-04-12 16:52:02 +01:00
interface_driver.c
interface_driver.h
Makefile.inc.am make: split interface driver build rules into interface/Makefile.inc.am 2018-03-05 17:08:35 +00:00