From c4de095cd18ac6e626aa0bf1c21bed3c1c8d1f4c Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 29 Jun 2003 19:44:14 +0000 Subject: [PATCH] Fixed invalid default argument. Not that the compiler eats the file now... git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3743 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/util/AVLTreeMap.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/headers/private/kernel/util/AVLTreeMap.h b/headers/private/kernel/util/AVLTreeMap.h index 4f3703264f..c772dc1acf 100644 --- a/headers/private/kernel/util/AVLTreeMap.h +++ b/headers/private/kernel/util/AVLTreeMap.h @@ -103,8 +103,7 @@ public: Iterator Find(const Key &key); Iterator FindClose(const Key &key, bool less); - status_t Insert(const Key &key, const Value &value, - Iterator &iterator = NULL); + status_t Insert(const Key &key, const Value &value, Iterator &iterator); status_t Remove(const Key &key); Iterator Erase(const Iterator &iterator);