ObjFW  Diff

Differences From Artifact [ad4d018447]:

To Artifact [8cde88e60d]:


417
418
419
420
421
422
423

424



425
426
427
428
429
430
431
 *
 * @brief The root class for all other classes inside ObjFW.
 */
OF_ROOT_CLASS
@interface OFObject <OFObject>
{
@private

	Class _isa;



}

/*!
 * @brief A method which is called once when the class is loaded into the
 *	  runtime.
 *
 * Derived classes can override this to execute their own code when the class







>

>
>
>







417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
 *
 * @brief The root class for all other classes inside ObjFW.
 */
OF_ROOT_CLASS
@interface OFObject <OFObject>
{
@private
#ifndef __clang_analyzer__
	Class _isa;
#else
	Class _isa __attribute__((__unused__));
#endif
}

/*!
 * @brief A method which is called once when the class is loaded into the
 *	  runtime.
 *
 * Derived classes can override this to execute their own code when the class