Skip to content

Commit

Permalink
ignore deprecation of codecvt_utf8_utf16 and wstring_convert for now …
Browse files Browse the repository at this point in the history
…on macOS too
  • Loading branch information
scheffle committed Apr 13, 2023
1 parent 8a24a2a commit 104764c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions vstgui/lib/platform/common/generictextedit.cpp
Expand Up @@ -20,6 +20,11 @@
#include <codecvt>
#include <locale>

#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#endif

//-----------------------------------------------------------------------------
namespace VSTGUI {

Expand Down Expand Up @@ -854,3 +859,7 @@ float STBTextEditView::getCharWidth (STBTextEditView* self, int n, int i)

//-----------------------------------------------------------------------------
} // VSTGUI

#ifdef __clang__
#pragma clang diagnostic pop
#endif

0 comments on commit 104764c

Please sign in to comment.