-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsizes.cpp
More file actions
31 lines (27 loc) · 785 Bytes
/
sizes.cpp
File metadata and controls
31 lines (27 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//------------------------------- sizes.cpp ------------------------------------
//
// This software is in the public domain. The only restriction on its use is
// that no one can remove it from the public domain by claiming ownership of it,
// including the original authors.
//
// There is no warranty of correctness on the software contained herein. Use
// at your own risk.
//
//------------------------------------------------------------------------------
// The proposal
#include "hash_append.h"
// Example Hashers
#include "siphash.h"
#include "fnv1a.h"
#include "spooky.h"
#include <iostream>
int
main()
{
std::cout << sizeof(acme::siphash) << '\n';
std::cout << sizeof(acme::spooky) << '\n';
std::cout << sizeof(acme::fnv1a) << '\n';
}
// 48
// 304
// 8