diff options
| author | Mike Wey | 2011-01-09 20:52:03 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 20:52:03 +0100 |
| commit | 0bd6744310e0b209f3c5911a4e68d453e867914a (patch) | |
| tree | a916a4d8151decbb068a6e002049f8ab32550e2c /dmagick/c/splayTree.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/splayTree.d')
| -rw-r--r-- | dmagick/c/splayTree.d | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dmagick/c/splayTree.d b/dmagick/c/splayTree.d index 77c8489..69451bd 100644 --- a/dmagick/c/splayTree.d +++ b/dmagick/c/splayTree.d @@ -10,9 +10,9 @@ extern(C) MagickBooleanType DeleteNodeByValueFromSplayTree(SplayTreeInfo*, const void*); MagickBooleanType DeleteNodeFromSplayTree(SplayTreeInfo*, const void*); - const(void*) GetNextKeyInSplayTree(SplayTreeInfo*); - const(void*) GetNextValueInSplayTree(SplayTreeInfo*); - const(void*) GetValueFromSplayTree(SplayTreeInfo*, const void*); + const(void)* GetNextKeyInSplayTree(SplayTreeInfo*); + const(void)* GetNextValueInSplayTree(SplayTreeInfo*); + const(void)* GetValueFromSplayTree(SplayTreeInfo*, const void*); int CompareSplayTreeString(const void*, const void*); int CompareSplayTreeStringInfo(const void*, const void*); |
