Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-10-29 07:42:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-29 07:47:10 +0300
commit4518c0f3e845fc1de58b6824bcc8fb77e594c0f1 (patch)
tree5cf28788b30d253b2ec0f0df72be29e86ebb1943 /source/blender/blenlib/intern/BLI_heap.c
parent34257329263c3af108736b8d1047d48091e82d92 (diff)
Cleanup: const args
Diffstat (limited to 'source/blender/blenlib/intern/BLI_heap.c')
-rw-r--r--source/blender/blenlib/intern/BLI_heap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c
index d6e8721faa7..84b15ca1cf9 100644
--- a/source/blender/blenlib/intern/BLI_heap.c
+++ b/source/blender/blenlib/intern/BLI_heap.c
@@ -289,17 +289,17 @@ void BLI_heap_insert_or_update(Heap *heap, HeapNode **node_p, float value, void
}
-bool BLI_heap_is_empty(Heap *heap)
+bool BLI_heap_is_empty(const Heap *heap)
{
return (heap->size == 0);
}
-uint BLI_heap_size(Heap *heap)
+uint BLI_heap_size(const Heap *heap)
{
return heap->size;
}
-HeapNode *BLI_heap_top(Heap *heap)
+HeapNode *BLI_heap_top(const Heap *heap)
{
return heap->tree[0];
}
@@ -358,12 +358,12 @@ void BLI_heap_node_value_update_ptr(Heap *heap, HeapNode *node, float value, voi
BLI_heap_node_value_update(heap, node, value);
}
-float BLI_heap_node_value(HeapNode *node)
+float BLI_heap_node_value(const HeapNode *node)
{
return node->value;
}
-void *BLI_heap_node_ptr(HeapNode *node)
+void *BLI_heap_node_ptr(const HeapNode *node)
{
return node->ptr;
}