Minh Nguyen / ArduinoJson
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers assert.hpp Source File

assert.hpp

00001 // ArduinoJson - arduinojson.org
00002 // Copyright Benoit Blanchon 2014-2021
00003 // MIT License
00004 
00005 #pragma once
00006 
00007 #include <ArduinoJson/Configuration.hpp>
00008 
00009 #if ARDUINOJSON_DEBUG
00010 #include <assert.h>
00011 #define ARDUINOJSON_ASSERT(X) assert(X)
00012 #else
00013 #define ARDUINOJSON_ASSERT(X) ((void)0)
00014 #endif