forked from suyu/suyu
telemetry_json: Remove unnecessary includes
Removes unused includes. Also rectifies a missing <chrono> include.
This commit is contained in:
parent
6e6ce2ce39
commit
a34e5e51d8
2 changed files with 1 additions and 3 deletions
|
@ -2,8 +2,6 @@
|
||||||
// Licensed under GPLv2 or any later version
|
// Licensed under GPLv2 or any later version
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
#include <thread>
|
|
||||||
#include "common/assert.h"
|
|
||||||
#include "common/detached_tasks.h"
|
#include "common/detached_tasks.h"
|
||||||
#include "web_service/telemetry_json.h"
|
#include "web_service/telemetry_json.h"
|
||||||
#include "web_service/web_backend.h"
|
#include "web_service/web_backend.h"
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
#include <chrono>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <json.hpp>
|
#include <json.hpp>
|
||||||
#include "common/telemetry.h"
|
#include "common/telemetry.h"
|
||||||
#include "common/web_result.h"
|
|
||||||
|
|
||||||
namespace WebService {
|
namespace WebService {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue