aboutsummaryrefslogtreecommitdiff
path: root/pair.h
diff options
context:
space:
mode:
Diffstat (limited to 'pair.h')
-rw-r--r--pair.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pair.h b/pair.h
index e3822a9b..e96cf180 100644
--- a/pair.h
+++ b/pair.h
@@ -7,8 +7,8 @@
#if defined(T) && defined(V)
typedef struct {
- T left;
- V right;
+ T key;
+ V val;
} PAIR(T, V);
INIT_F(PAIR(T, V));