16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 17:09:19 +02:00
Files
maszyna/registry/NameLiteral.h
2026-04-07 23:40:03 +02:00

11 lines
189 B
C++

#pragma once
#include <cstddef>
#include "FName.h"
#include "NameHash.h"
consteval FName operator"" _name(const char* str, std::size_t len)
{
return FName{ HashLiteral(str, len) };
}