FelixBrendel před 6 roky
rodič
revize
81a0645e31
3 změnil soubory, kde provedl 3 přidání a 11 odebrání
  1. +1
    -1
      src/ftb
  2. +2
    -2
      src/slime.h
  3. +0
    -8
      src/structs.cpp

+ 1
- 1
src/ftb

@@ -1 +1 @@
Subproject commit 7e47157a5f47c6a7ff3d27e665aaa1a9d48efe2f
Subproject commit e782aa70b7ad2a175f11683307e605ad805d5ad3

+ 2
- 2
src/slime.h Zobrazit soubor

@@ -27,8 +27,8 @@


struct Lisp_Object; struct Lisp_Object;
u32 hm_hash(Lisp_Object* obj); u32 hm_hash(Lisp_Object* obj);
u32 hm_hash(char* obj);
u32 hm_hash(void* obj);
unsigned int hm_hash(char* obj);
unsigned int hm_hash(void* obj);
bool hm_objects_match(void* a, void* b); bool hm_objects_match(void* a, void* b);
bool hm_objects_match(char* a, char* b); bool hm_objects_match(char* a, char* b);
bool hm_objects_match(Lisp_Object* a, Lisp_Object* b); bool hm_objects_match(Lisp_Object* a, Lisp_Object* b);


+ 0
- 8
src/structs.cpp Zobrazit soubor

@@ -2,14 +2,6 @@ struct Lisp_Object;
struct String; struct String;
struct Environment; struct Environment;


unsigned int hm_hash(char* str);
unsigned int hm_hash(void* str);
unsigned int hm_hash(Lisp_Object* str);

bool hm_objects_match(char* a, char* b);
bool hm_objects_match(void* a, void* b);
bool hm_objects_match(Lisp_Object* a, Lisp_Object* b);

// HASH MAPS // HASH MAPS
// define_hash_map(char*, String); // define_hash_map(char*, String);
// define_hash_map(Lisp_Object*, Lisp_Obj); // define_hash_map(Lisp_Object*, Lisp_Obj);


Načítá se…
Zrušit
Uložit