mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 00:07:35 +00:00
Big, possibly complete sweep of naming changes.
This commit is contained in:
parent
27fa09aee4
commit
ffab6897aa
93 changed files with 830 additions and 885 deletions
|
@ -12,13 +12,13 @@ struct Traits
|
|||
|
||||
template<>
|
||||
struct Traits<int> {
|
||||
static unsigned hash(int i) { return intHash(i); }
|
||||
static unsigned hash(int i) { return int_hash(i); }
|
||||
static void dump(int i) { kprintf("%d", i); }
|
||||
};
|
||||
|
||||
template<>
|
||||
struct Traits<unsigned> {
|
||||
static unsigned hash(unsigned u) { return intHash(u); }
|
||||
static unsigned hash(unsigned u) { return int_hash(u); }
|
||||
static void dump(unsigned u) { kprintf("%u", u); }
|
||||
};
|
||||
|
||||
|
@ -26,7 +26,7 @@ template<typename T>
|
|||
struct Traits<T*> {
|
||||
static unsigned hash(const T* p)
|
||||
{
|
||||
return intHash((dword)p);
|
||||
return int_hash((dword)p);
|
||||
}
|
||||
static void dump(const T* p) { kprintf("%p", p); }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue