diff --git a/AK/BitStream.h b/AK/BitStream.h index 97da95b9fa..e7e83ff4ea 100644 --- a/AK/BitStream.h +++ b/AK/BitStream.h @@ -7,6 +7,7 @@ #pragma once #include +#include #include #include #include @@ -427,4 +428,11 @@ public: } }; +template +concept InputBitStream = OneOf; + } + +#if USING_AK_GLOBALLY +using AK::InputBitStream; +#endif