Skip to content

Commit

Permalink
Disable 4702 in IFC 2
Browse files Browse the repository at this point in the history
  • Loading branch information
rbsheth committed Jul 24, 2020
1 parent 5974e36 commit ed9977a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions code/AssetLib/IFC/IFCReaderGen2_2x3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "IFCReaderGen_2x3.h"

#if _MSC_VER
# pragma warning(push)
# pragma warning(disable : 4702)
#endif // _MSC_VER

namespace Assimp {
using namespace IFC;
using namespace ::Assimp::IFC::Schema_2x3;
Expand Down Expand Up @@ -1915,4 +1920,8 @@ template <> size_t GenericFill<IfcConditionCriterion>(const DB& db, const LIST&
} // ! STEP
} // ! Assimp

#if _MSC_VER
# pragma warning(pop)
#endif // _MSC_VER

#endif

0 comments on commit ed9977a

Please sign in to comment.