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

LibJS: Put CanonicalIndex in the JS namespace

This commit is contained in:
Timothy Flynn 2022-12-07 08:06:02 -05:00 committed by Linus Groh
parent 8f1f794bbd
commit 8f46cb83c7

View file

@ -8,6 +8,8 @@
#include <AK/Types.h>
namespace JS {
class CanonicalIndex {
public:
enum class Type {
@ -35,3 +37,5 @@ private:
Type m_type;
u32 m_index;
};
}