We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 115e4be commit 163f2bcCopy full SHA for 163f2bc
1 file changed
src/Helper.h
@@ -69,6 +69,7 @@ class Helper {
69
/// @tparam TSource Source class that should be used to serialize the json that is sent to the server
70
/// @param source Source containing our json key-value pairs that we want to measure the resulting size of the serializeJson call for
71
/// @return Total size required for the string that would be produced by serializeJson + 1 byte for the string null terminator
72
+ template <typename TSource>
73
static size_t Measure_Json(TSource const & source) {
74
return measureJson(source) + 1U;
75
}
0 commit comments