mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-10 06:40:23 +00:00
micro-ecc: suppress MSVC C4244 warning
This commit is contained in:
parent
0dec11ea03
commit
75aabb0d58
5
3rd-party/micro-ecc/uECC.c
vendored
5
3rd-party/micro-ecc/uECC.c
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user