I know it is common (and may be a project style) but there is no advantage to having different names to refer to the same thing in different namespaces. That is not:
typedef struct _CCSObject CCSObject;
struct _CCSObject { ... };
but:
typedef struct CCSObject { ... } CCSObject;
« Back to merge proposal
I know it is common (and may be a project style) but there is no advantage to having different names to refer to the same thing in different namespaces. That is not:
typedef struct _CCSObject CCSObject;
struct _CCSObject
{
...
};
but:
typedef struct CCSObject
{
...
} CCSObject;