15 lines
279 B
C++
15 lines
279 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2020
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include <ArduinoJson/Configuration.hpp>
|
|
|
|
#if ARDUINOJSON_DEBUG
|
|
#include <assert.h>
|
|
#define ARDUINOJSON_ASSERT(X) assert(X)
|
|
#else
|
|
#define ARDUINOJSON_ASSERT(X) ((void)0)
|
|
#endif
|