Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lf-lang/reactor-c
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8d2bdd803861e8e3463d106fbcf14e7ee23159bb
Choose a base ref
..
head repository: lf-lang/reactor-c
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c2b5f8d44b68add782309cebfeacfa0de7ec666d
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 include/core/utils/impl/hashmap.h
  2. +1 −1 include/core/utils/impl/pointer_hashmap.h
2 changes: 1 addition & 1 deletion include/core/utils/impl/hashmap.h
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
#define V void*
#endif
#ifndef HASH_OF
#define HASH_OF(key) (size_t) key
#define HASH_OF(key) (size_t)key
#endif
#ifndef HASHMAP
#define HASHMAP(token) hashmap##_##token
2 changes: 1 addition & 1 deletion include/core/utils/impl/pointer_hashmap.h
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@
#define HASHMAP(token) hashmap_object2int##_##token
#define K void*
#define V int
#define HASH_OF(key) (size_t) key
#define HASH_OF(key) (size_t)key
#include "hashmap.h"
#undef HASHMAP
#undef K