micro-ecc: suppress MSVC C4244 warning

This commit is contained in:
Matthias Ringwald 2022-04-28 22:57:55 +02:00
parent 0dec11ea03
commit 75aabb0d58

View File

@ -5,6 +5,11 @@
// NULL
#include "stddef.h"
// suppress MSVC C4244: conversion from uECC_word_t to int
#ifdef _MSC_VER
#pragma warning( disable : 4244 )
#endif
#ifndef uECC_PLATFORM
#if __AVR__
#define uECC_PLATFORM uECC_avr