ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/shstr.C
(Generate patch)

Comparing deliantra/server/common/shstr.C (file contents):
Revision 1.51 by root, Fri Nov 18 04:44:13 2016 UTC vs.
Revision 1.52 by root, Sat Nov 17 23:33:17 2018 UTC

25 */ 25 */
26 26
27#include <cstring> 27#include <cstring>
28#include <cstdlib> 28#include <cstdlib>
29#include <glib.h> 29#include <glib.h>
30#include <unordered_set>
31 30
31#include <flat_hash_map.hpp>
32
32#include "global.h" 33#include <global.h>
33 34
34size_t shstr_alloc; 35size_t shstr_alloc;
35 36
36typedef std::unordered_set <const char *, str_hash, str_equal, slice_allocator<const char *> > HT; 37typedef ska::flat_hash_set<const char *, str_hash, str_equal, slice_allocator<const char *>> HT;
37 38
38static HT ht; 39static HT ht;
39static int next_gc; 40static int next_gc;
40 41
41#define NUM_INT 3 42#define NUM_INT 3

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines