Skip to content

Commit

Permalink
Disable MSVC warning 4251.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Zaytsev committed Sep 4, 2024
1 parent f37fbc8 commit 004b0ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/render2d/src/render_item_aux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@
#include "render_internal.h"
#include <codecvt>
#include <fstream>
#include <lunasvg.h>
#include <stb_image_write.h>

#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4996)
#pragma warning(disable : 4251)
#endif

#include <lunasvg.h>
#include <stb_image_write.h>

using namespace indigo;

IMPL_ERROR(RenderItemAuxiliary, "RenderItemAuxiliary");
Expand Down

0 comments on commit 004b0ba

Please sign in to comment.