Warning C4099: type name first seen using 'class' now seen using 'struct' (MS VS 2k8)

前端 未结 7 2169
萌比男神i
萌比男神i 2021-01-04 01:42

Is this warning anything to worry about? I\'ve read that it can cause erratic behaviour?

It\'s an example I\'m trying to compile, could someone explain to me why the

7条回答
  •  隐瞒了意图╮
    2021-01-04 01:57

    This warning appears when you have a one type declaration that contradicts another (one says "class", the other says "struct"). Given the one definition rule, all declarations except for at most one must be forward declarations. The warning will generally indicate that a forward declaration of a type is wrong and is usually a simple typo and should be fixed. In this case there should be no side effects, but you really should fix it.

    There can be, however, some very nasty things happen if you have type name clashes (perhaps caused by using "using namespace" clauses or global namespace pollution). These warnings could be indicating that you are mixing headers from two different libraries and the type names have clashes. Code compiled under these conditions could do some very unexpected things.

    My advice - understand why the warning has appeared and fix it. If the warning is in a third party product, insist that they fix it.

提交回复
热议问题