Remove warnings C4275 and C4251from Windows builds

Issue #189 closed
Paolo Brandoli repo owner created an issue

Visual studio displays the warning "non dll-interface class 'XXX' used as base for dll-interface class 'YYY'".

Since XXX is a standard library class the warning can be ignored by setting

#pragma warning(disable: 4275)
#pragma warning(disable: 4251)

.

Comments (6)

  1. Log in to comment