mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
web_service: Remove unnecessary inclusions
Reduces the potential amount of rebuilding necessary if any headers change. In particular, we were including a header from the core library when we don't even link the core library to the web_service library, so this also gets rid of an indirect dependency.
This commit is contained in:
parent
2e2f6aa71a
commit
aa30fd75cd
2 changed files with 0 additions and 3 deletions
|
@ -4,8 +4,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <functional>
|
|
||||||
#include <future>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace WebService {
|
namespace WebService {
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
#include "common/common_types.h"
|
#include "common/common_types.h"
|
||||||
#include "common/logging/log.h"
|
#include "common/logging/log.h"
|
||||||
#include "common/web_result.h"
|
#include "common/web_result.h"
|
||||||
#include "core/settings.h"
|
|
||||||
#include "web_service/web_backend.h"
|
#include "web_service/web_backend.h"
|
||||||
|
|
||||||
namespace WebService {
|
namespace WebService {
|
||||||
|
|
Loading…
Reference in a new issue