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

Support inserting a newline.

This commit is contained in:
Andreas Kling 2018-12-05 01:43:07 +01:00
parent efd5aae217
commit d2bb139c46
6 changed files with 50 additions and 13 deletions

View file

@ -94,7 +94,7 @@ private:
template<class T, class... Args> inline OwnPtr<T>
make(Args&&... args)
{
return OwnPtr<T>(new T(forward<Args>(args)...));
return OwnPtr<T>(new T(AK::forward<Args>(args)...));
}
template<typename T>