diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-04-18 17:34:17 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-20 18:28:34 +0200 |
commit | 55b7b8e93080aa7e9c52db505da32dfa00b4b4bc (patch) | |
tree | b98847fbabcd6858af13ffc6a7a614d278e493db /AK | |
parent | 492f7132d297edc66efdad5a87135bbcef608c8b (diff) | |
download | serenity-55b7b8e93080aa7e9c52db505da32dfa00b4b4bc.zip |
AK+Meta: Add a debug option for LibSQL
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Debug.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/AK/Debug.h.in b/AK/Debug.h.in index d89845cea4..afb24e9a08 100644 --- a/AK/Debug.h.in +++ b/AK/Debug.h.in @@ -358,6 +358,10 @@ #cmakedefine01 SPAM_DEBUG #endif +#ifndef SQL_DEBUG +#cmakedefine01 SQL_DEBUG +#endif + #ifndef STRINGIMPL_DEBUG #cmakedefine01 STRINGIMPL_DEBUG #endif |