1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 18:45:08 +00:00

HackStudio: Use new format functions.

This commit is contained in:
asynts 2020-10-08 13:41:36 +02:00 committed by Andreas Kling
parent 3b601cd4bd
commit 7c4fb2b804
23 changed files with 112 additions and 117 deletions

View file

@ -46,7 +46,7 @@ Vector<AutoCompleteResponse> AutoComplete::get_suggestions(const String& code, G
#ifdef DEBUG_AUTOCOMPLETE
for (auto& suggestion : suggestions) {
dbg() << "suggestion: " << suggestion.completion;
dbgln("suggestion: {}", suggestion.completion);
}
#endif