style: update include guards and incl statements to follow google style guide

This commit is contained in:
Aaron Po
2026-06-28 13:07:14 -04:00
parent 98f97b8e2c
commit c0ffdb0ec7
28 changed files with 199 additions and 143 deletions

View File

@@ -3,13 +3,14 @@
* @brief WikipediaEnrichmentService::FetchExtract() implementation.
*/
#include <boost/json.hpp>
#include <chrono>
#include <format>
#include <string>
#include <string_view>
#include <thread>
#include <boost/json.hpp>
#include "services/enrichment/wikipedia_service.h"
using namespace boost;

View File

@@ -6,10 +6,10 @@
*/
#include "services/logging/log_dispatcher.h"
#include <spdlog/spdlog.h>
#include <string>
#include <spdlog/spdlog.h>
#include "concurrency/bounded_channel.h"
#include "services/logging/log_entry.h"

View File

@@ -1,11 +1,12 @@
#include "services/database/sqlite_statement_helpers.h"
#include <boost/json.hpp>
#include <cstring>
#include <limits>
#include <memory>
#include <stdexcept>
#include <boost/json.hpp>
#include "services/database/sqlite_connection_helpers.h"
namespace sqlite_export_service_internal {