mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-16 08:42:28 +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
|
// NULL
|
||||||
#include "stddef.h"
|
#include "stddef.h"
|
||||||
|
|
||||||
|
// suppress MSVC C4244: conversion from uECC_word_t to int
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning( disable : 4244 )
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef uECC_PLATFORM
|
#ifndef uECC_PLATFORM
|
||||||
#if __AVR__
|
#if __AVR__
|
||||||
#define uECC_PLATFORM uECC_avr
|
#define uECC_PLATFORM uECC_avr
|
||||||
|
Loading…
x
Reference in New Issue
Block a user