diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-07 21:19:01 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-07 21:19:01 +0100 |
commit | dc93b1e9b3e05dfd3e271aaccbee1210180a6906 (patch) | |
tree | 8a66c8087fb8cbcf14b0827b78a11ec0fb7b08ce /src/example/db.cpp | |
parent | ace974504e410eb7d98ca021d75511d8f84b9bdc (diff) |
update clang-format and run `make format` over my (loek)s files
Diffstat (limited to 'src/example/db.cpp')
-rw-r--r-- | src/example/db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/example/db.cpp b/src/example/db.cpp index c046421..8c06a84 100644 --- a/src/example/db.cpp +++ b/src/example/db.cpp @@ -1,12 +1,12 @@ -#include <crepe/facade/DB.h> #include <crepe/api/Config.h> +#include <crepe/facade/DB.h> #include <crepe/util/log.h> using namespace crepe; using namespace std; // run before main -static auto _ = [] () { +static auto _ = []() { auto & cfg = Config::get_instance(); cfg.log.level = LogLevel::TRACE; return 0; |