aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-01 17:27:14 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-01 17:27:14 +0200
commit65eda52aa51017f6f7aad158c4f8b6e91054cf0d (patch)
treea668f9374ef61a502bf691e3b13510d1dc9efca9 /src/crepe/util
parent8e67adc6828181b1df7c95da76f32962444fc7fd (diff)
`make format`loek/audio
Diffstat (limited to 'src/crepe/util')
-rw-r--r--src/crepe/util/color.h3
-rw-r--r--src/crepe/util/log.cpp1
-rw-r--r--src/crepe/util/log.h20
3 files changed, 11 insertions, 13 deletions
diff --git a/src/crepe/util/color.h b/src/crepe/util/color.h
index 1af6c8f..066c9d3 100644
--- a/src/crepe/util/color.h
+++ b/src/crepe/util/color.h
@@ -38,5 +38,4 @@ constexpr const char * BG_MAGENTA_BRIGHT = "\e[105m";
constexpr const char * BG_CYAN_BRIGHT = "\e[106m";
constexpr const char * BG_WHITE_BRIGHT = "\e[107m";
-}
-
+} // namespace crepe::util::color
diff --git a/src/crepe/util/log.cpp b/src/crepe/util/log.cpp
index 796df49..6829ec3 100644
--- a/src/crepe/util/log.cpp
+++ b/src/crepe/util/log.cpp
@@ -48,4 +48,3 @@ void crepe::util::logf(log_level level, const char * fmt, ...) {
va_logf(level, args, fmt);
va_end(args);
}
-
diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h
index 5295cb9..4cab338 100644
--- a/src/crepe/util/log.h
+++ b/src/crepe/util/log.h
@@ -8,12 +8,9 @@
// utility macros
#define _crepe_logf_here(fmt, ...) \
crepe::util::logf(util::log_level::debug, "%s%s (%s:%d)" fmt "\n", \
- crepe::util::color::FG_WHITE, \
- __PRETTY_FUNCTION__, \
- __FILE_NAME__, \
- __LINE__, \
- crepe::util::color::RESET, \
- __VA_ARGS__)
+ crepe::util::color::FG_WHITE, __PRETTY_FUNCTION__, \
+ __FILE_NAME__, __LINE__, crepe::util::color::RESET, \
+ __VA_ARGS__)
#define dbg_logf(fmt, ...) _crepe_logf_here(": " fmt, __VA_ARGS__)
#define dbg_log(str) _crepe_logf_here(": %s", str)
@@ -23,11 +20,14 @@
namespace crepe::util {
-enum log_level { debug, info, warning, error, };
+enum log_level {
+ debug,
+ info,
+ warning,
+ error,
+};
void logf(const char * fmt, ...);
void logf(enum log_level level, const char * fmt, ...);
-}
-
-
+} // namespace crepe::util