Skip to content

Commit

Permalink
refactor: reorder includes in communicator.cpp
Browse files Browse the repository at this point in the history
First, the matching header file for the source file.
Second, includes from the agent.
Third, third party libraries.
Last, standard c++ includes.
  • Loading branch information
jr0me committed Feb 21, 2025
1 parent 70517d7 commit cfbb67c
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/agent/communicator/src/communicator.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
#include <communicator.hpp>

#include <config.h>
#include <http_request_params.hpp>
#include <logger.hpp>

#include <boost/asio.hpp>

#include <nlohmann/json.hpp>

#include <boost/url.hpp>
#include <jwt-cpp/jwt.h>
#include <jwt-cpp/traits/nlohmann-json/traits.h>

#include <boost/url.hpp>

#include <logger.hpp>
#include <nlohmann/json.hpp>

#include <algorithm>
#include <chrono>
Expand Down

0 comments on commit cfbb67c

Please sign in to comment.