mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-21 17:09:19 +02:00
11 lines
189 B
C++
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) };
|
|
} |