🚨 fixed warnings

This commit is contained in:
Niels Lohmann 2019-03-15 14:55:13 +01:00
parent 0c65ba960e
commit 27011e3718
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
16 changed files with 58 additions and 44 deletions

View file

@ -1,9 +1,10 @@
#pragma once
#include <cassert>
#include <cassert> // assert
#include <cstddef>
#include <string>
#include <vector>
#include <string> // string
#include <utility> // move
#include <vector> // vector
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/macro_scope.hpp>

View file

@ -6,6 +6,7 @@
#include <cstdio> // snprintf
#include <initializer_list> // initializer_list
#include <string> // char_traits, string
#include <utility> // move
#include <vector> // vector
#include <nlohmann/detail/macro_scope.hpp>

View file

@ -6,6 +6,7 @@
#include <functional> // function
#include <string> // string
#include <utility> // move
#include <vector> // vector
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/macro_scope.hpp>

View file

@ -23,5 +23,5 @@ struct position_t
}
};
}
}
} // namespace detail
} // namespace nlohmann