1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:07:34 +00:00

AK: Add enabled template parameter to dbgln.

This commit is contained in:
asynts 2021-01-12 22:10:24 +01:00 committed by Andreas Kling
parent 971425d7b1
commit 4953c73fc1
2 changed files with 10 additions and 14 deletions

View file

@ -133,15 +133,6 @@ class WeakPtr;
template<typename T, size_t inline_capacity = 0>
class Vector;
template<typename... Parameters>
void dbgln(const char* fmtstr, const Parameters&...);
template<typename... Parameters>
void warnln(const char* fmtstr, const Parameters&...);
template<typename... Parameters>
void outln(const char* fmtstr, const Parameters&...);
}
using AK::Array;