Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
is_const.hpp
00001 // ArduinoJson - arduinojson.org 00002 // Copyright Benoit Blanchon 2014-2021 00003 // MIT License 00004 00005 #pragma once 00006 00007 #include "integral_constant.hpp" 00008 00009 namespace ARDUINOJSON_NAMESPACE { 00010 00011 // A meta-function that return the type T without the const modifier 00012 template <typename T> 00013 struct is_const : false_type {}; 00014 00015 template <typename T> 00016 struct is_const<const T> : true_type {}; 00017 } // namespace ARDUINOJSON_NAMESPACE
Generated on Wed Jul 13 2022 01:10:36 by
1.7.2