diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-08 11:36:39 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-08 11:36:39 +0100 |
commit | bf177644dc5de58791eb80b11af9d6b4877b0a24 (patch) | |
tree | d85656633677397152dae729e7ec67069c13ec3e /src/example/db.cpp | |
parent | 1c4156ee127b14760ed3b1a0cd16ad12180c7ac6 (diff) |
`make format`
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; |