Index: uspace/lib/cpp/include/__bits/adt/list.hpp
===================================================================
--- uspace/lib/cpp/include/__bits/adt/list.hpp	(revision 5e0ea6f520af8c8faa2c9eeaf59cf6dc8f52bd53)
+++ uspace/lib/cpp/include/__bits/adt/list.hpp	(revision b3a7151c4dc1352b01cdb71a6ea4f64e16ccfcec)
@@ -1,3 +1,4 @@
 /*
+ * Copyright (c) 2025 Jiri Svoboda
  * Copyright (c) 2019 Jaroslav Jindrak
  * All rights reserved.
@@ -80,4 +81,9 @@
                 }
 
+		pointer operator->() const
+		{
+		    return &current_->value;
+		}
+
                 list_const_iterator& operator++()
                 {
@@ -209,4 +215,9 @@
                     return current_->value;
                 }
+
+		pointer operator->() const
+		{
+		    return &current_->value;
+		}
 
                 list_iterator& operator++()
