make it fit in allocated space

This commit is contained in:
philippe44
2023-03-27 17:09:27 -07:00
parent 7dfdd7b9e5
commit fc78b36c1f
24 changed files with 421 additions and 230 deletions

View File

@@ -4,7 +4,11 @@
#include <string>
#include "HTTPClient.h"
#ifdef BELL_ONLY_CJSON
#include "cJSON.h"
#else
#include "nlohmann/json.hpp"
#endif
namespace cspot {
class ApResolve {

View File

@@ -10,7 +10,6 @@
#include "CSpotContext.h"
#include "AccessKeyFetcher.h"
namespace cspot {
class CDNTrackStream {

View File

@@ -3,7 +3,9 @@
#include <iostream>
#include <map>
#include <memory>
#ifndef BELL_ONLY_CJSON
#include <nlohmann/json.hpp>
#endif
#include <vector>
#include "ConstantParameters.h"