Skip to content

Commit

Permalink
optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Aug 13, 2023
1 parent f93e2cd commit 450a265
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Ieee80211Header.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include "HelperSources/StringHelper.hpp"
#include "wifibroadcast_spdlog.h"
#include <spdlog/spdlog.h>

// Helper for dealing with the IEEE80211 header in wifibroadcast / openhd
// Usefully references:
Expand Down
4 changes: 4 additions & 0 deletions src/wifibroadcast_spdlog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
//

#include "wifibroadcast_spdlog.h"

#include <spdlog/spdlog.h>
#include <spdlog/sinks/stdout_color_sinks.h>

#include <mutex>

std::shared_ptr<spdlog::logger> wifibroadcast::log::create_or_get(
const std::string& logger_name) {
Expand Down
2 changes: 1 addition & 1 deletion src/wifibroadcast_spdlog.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//#include <spdlog/sinks/stdout_color_sinks.h>
//#include <spdlog/spdlog.h>
#include <spdlog/fwd.h>
#include <mutex>
#include <memory>

namespace wifibroadcast::log{

Expand Down

0 comments on commit 450a265

Please sign in to comment.