umock-c icon indicating copy to clipboard operation
umock-c copied to clipboard

IGNORED_ARG does not work anymore with ENUM

Open anporumb opened this issue 5 years ago • 0 comments

(this is for C++).

image

yields

image

Here's a simple repro:

typedef enum E
{A,B,C} E;

void f(E e)
{
    (void)e;
}

int main(void)
{
    f(0);
    f(A);
    return 0;
}

anporumb avatar Dec 03 '20 18:12 anporumb