1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:47:35 +00:00

Userland: Remove a few gratuitous IPC namespace qualifiers

Spotted this while trying to search for specific IPC encode/decode
implementations. Now they are all the same, so searching is easier.
This commit is contained in:
Valtteri Koskivuori 2022-04-03 15:44:25 +03:00 committed by Linus Groh
parent 85ed64b99c
commit f2c02077ba
5 changed files with 10 additions and 10 deletions

View file

@ -54,7 +54,7 @@ private:
namespace IPC {
bool encode(IPC::Encoder&, Core::DateTime const&);
ErrorOr<void> decode(IPC::Decoder&, Core::DateTime&);
bool encode(Encoder&, Core::DateTime const&);
ErrorOr<void> decode(Decoder&, Core::DateTime&);
}