You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2026. It is now read-only.
If warning() is used in a static class function of a class derived from Session_object the compiler nags like follows, which can be addressed by using Genode::warning() but is unexpected at least.
error: cannot call member function ‘void Genode::Session_object< <template-parameter-1-1>, <template-parameter-1-2> >::error(auto:176&& ...) const
It may be a better approach to amend Session_object with a print() method such that a derived class can use warning(*this, " deserves a warning").
If
warning()is used in a static class function of a class derived fromSession_objectthe compiler nags like follows, which can be addressed by usingGenode::warning()but is unexpected at least.It may be a better approach to amend
Session_objectwith aprint()method such that a derived class can usewarning(*this, " deserves a warning").