Skip to content

Enumeration conflicts with Windows header files #258

@xoxoooooo

Description

@xoxoooooo

Source File ==> Source\Core\PropertyParserAnimation.cpp

enum Type { NONE, TWEEN, ALL, ALTERNATE, INFINITE, PAUSED } type;

ALTERNATE, INFINITE ==> These two values conflict with the windows header

This is my solution:

#ifdef ALTERNATE
#undef ALTERNATE
#endif
#ifdef INFINITE
#undef INFINITE
#endif

If you are sure that this is a problem, you can add it to your source code.

English is not good, from machine translation, I wish you a happy life.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions