Extracted storage_policy to improve coverage in string adapters

This commit is contained in:
Benoit Blanchon
2020-02-16 16:10:56 +01:00
parent 0814fc185f
commit 58298ec5ba
10 changed files with 59 additions and 43 deletions

View File

@@ -0,0 +1,15 @@
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2020
// MIT License
#pragma once
namespace ARDUINOJSON_NAMESPACE {
namespace storage_policy {
struct store_by_address {};
struct store_by_copy {};
struct decide_at_runtime {};
} // namespace storage_policy
} // namespace ARDUINOJSON_NAMESPACE