mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			412 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			412 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - https://arduinojson.org
 | |
| // Copyright Benoit Blanchon 2014-2021
 | |
| // MIT License
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <ArduinoJson/Polyfills/type_traits.hpp>
 | |
| 
 | |
| namespace ARDUINOJSON_NAMESPACE {
 | |
| template <typename>
 | |
| struct IsString : false_type {};
 | |
| 
 | |
| template <typename T>
 | |
| struct IsString<const T> : IsString<T> {};
 | |
| 
 | |
| template <typename T>
 | |
| struct IsString<T&> : IsString<T> {};
 | |
| }  // namespace ARDUINOJSON_NAMESPACE
 |