Skip to content

Commit

Permalink
Document disabled warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
oviano committed Feb 11, 2023
1 parent 1ca4d98 commit 20c6eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/codec.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wshorten-64-to-32"
#elif defined(_MSC_VER)
# pragma warning(disable:4244)
# pragma warning(disable:4267)
# pragma warning(disable:4244) /* ignore float to integer type conversion */
# pragma warning(disable:4267) /* ignore size_t to smaller type conversion */
#endif

/*----------------------------------------------------------------------------
Expand Down

0 comments on commit 20c6eb4

Please sign in to comment.