mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 23:42:32 +00:00
parent
f7ba777fff
commit
344d46ce78
@ -329,6 +329,16 @@ class Genode::Path_base
|
|||||||
return strcmp(_path, other) != 0;
|
return strcmp(_path, other) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool operator == (Path_base const &other) const
|
||||||
|
{
|
||||||
|
return strcmp(_path, other._path) == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator != (Path_base const &other) const
|
||||||
|
{
|
||||||
|
return strcmp(_path, other._path) != 0;
|
||||||
|
}
|
||||||
|
|
||||||
char const *last_element()
|
char const *last_element()
|
||||||
{
|
{
|
||||||
return last_element(_path)+1;
|
return last_element(_path)+1;
|
||||||
|
Loading…
Reference in New Issue
Block a user