Skip to content

Place class/struct definition on the next line after template definition. #68

@konard

Description

@konard

Example:

template <typename TValue> struct ISetter<TValue>
{
    virtual void Set(TValue value) = 0;

    virtual ~ISetter<TValue>() = default;
};

=>

template <typename TValue>
struct ISetter<TValue>
{
    virtual void Set(TValue value) = 0;

    virtual ~ISetter<TValue>() = default;
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions