single include changes

This commit is contained in:
Alex Fishgait 2023-10-10 11:36:23 +02:00
parent 519f972fc4
commit 453c8c24d7
2 changed files with 6 additions and 3 deletions

View File

@ -6068,6 +6068,7 @@ NLOHMANN_JSON_NAMESPACE_END
#include <string> // char_traits, string #include <string> // char_traits, string
#include <utility> // make_pair, move #include <utility> // make_pair, move
#include <vector> // vector #include <vector> // vector
#include <memory>
// #include <nlohmann/detail/exceptions.hpp> // #include <nlohmann/detail/exceptions.hpp>
@ -6581,6 +6582,7 @@ NLOHMANN_JSON_NAMESPACE_END
#include <string> // string #include <string> // string
#include <utility> // move #include <utility> // move
#include <vector> // vector #include <vector> // vector
#include <memory>
// #include <nlohmann/detail/exceptions.hpp> // #include <nlohmann/detail/exceptions.hpp>
@ -7318,6 +7320,7 @@ NLOHMANN_JSON_NAMESPACE_END
#include <string> // char_traits, string #include <string> // char_traits, string
#include <utility> // move #include <utility> // move
#include <vector> // vector #include <vector> // vector
#include <memory>
// #include <nlohmann/detail/input/input_adapters.hpp> // #include <nlohmann/detail/input/input_adapters.hpp>

View File

@ -283,7 +283,7 @@ struct NAlloc
}; };
NAlloc() : NAlloc() :
alloc(),m_alloc_size(0) alloc(), m_alloc_size(0)
{ {
} }