aboutsummaryrefslogtreecommitdiffstats
path: root/router/router.h
diff options
context:
space:
mode:
Diffstat (limited to 'router/router.h')
-rw-r--r--router/router.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/router/router.h b/router/router.h
index 007b6a16..70335421 100644
--- a/router/router.h
+++ b/router/router.h
@@ -140,9 +140,9 @@ extern std::atomic<DriverIface*> CurrentCtxDriver;
class PtrIntMap {
- ALvoid **mKeys{nullptr};
+ void **mKeys{nullptr};
/* Shares memory with keys. */
- ALint *mValues{nullptr};
+ int *mValues{nullptr};
ALsizei mSize{0};
ALsizei mCapacity{0};
@@ -152,9 +152,9 @@ public:
PtrIntMap() = default;
~PtrIntMap();
- ALenum insert(ALvoid *key, ALint value);
- ALint removeByKey(ALvoid *key);
- ALint lookupByKey(ALvoid *key);
+ ALenum insert(void *key, int value);
+ int removeByKey(void *key);
+ int lookupByKey(void *key);
};