mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
25 lines
371 B
C++
25 lines
371 B
C++
#pragma once
|
|
|
|
#include <cstdio>
|
|
|
|
namespace AK {
|
|
|
|
template<typename T>
|
|
struct Traits
|
|
{
|
|
};
|
|
|
|
template<>
|
|
struct Traits<int> {
|
|
static unsigned hash(int i) { return i; }
|
|
static void dump(int i) { printf("%d", i); }
|
|
};
|
|
|
|
template<>
|
|
struct Traits<unsigned> {
|
|
static unsigned hash(unsigned u) { return u; }
|
|
static void dump(unsigned u) { printf("%u", u); }
|
|
};
|
|
|
|
}
|
|
|