mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
parent
aff81d318b
commit
c911781c21
243 changed files with 483 additions and 481 deletions
|
@ -24,7 +24,7 @@ static void finalizer_task(void*)
|
|||
else
|
||||
g_finalizer_wait_queue->wait_forever(finalizer_task_name);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
UNMAP_AFTER_INIT void FinalizerTask::spawn()
|
||||
{
|
||||
|
|
|
@ -1066,7 +1066,7 @@ ErrorOr<void> Process::try_set_coredump_property(StringView key, StringView valu
|
|||
auto key_kstring = TRY(KString::try_create(key));
|
||||
auto value_kstring = TRY(KString::try_create(value));
|
||||
return set_coredump_property(move(key_kstring), move(value_kstring));
|
||||
};
|
||||
}
|
||||
|
||||
static constexpr StringView to_string(Pledge promise)
|
||||
{
|
||||
|
|
|
@ -484,13 +484,13 @@ public:
|
|||
RefPtr<Custody> executable();
|
||||
RefPtr<Custody const> executable() const;
|
||||
|
||||
UnixDateTime creation_time() const { return m_creation_time; };
|
||||
UnixDateTime creation_time() const { return m_creation_time; }
|
||||
|
||||
static constexpr size_t max_arguments_size = Thread::default_userspace_stack_size / 8;
|
||||
static constexpr size_t max_environment_size = Thread::default_userspace_stack_size / 8;
|
||||
static constexpr size_t max_auxiliary_size = Thread::default_userspace_stack_size / 8;
|
||||
Vector<NonnullOwnPtr<KString>> const& arguments() const { return m_arguments; };
|
||||
Vector<NonnullOwnPtr<KString>> const& environment() const { return m_environment; };
|
||||
Vector<NonnullOwnPtr<KString>> const& arguments() const { return m_arguments; }
|
||||
Vector<NonnullOwnPtr<KString>> const& environment() const { return m_environment; }
|
||||
|
||||
ErrorOr<void> exec(NonnullOwnPtr<KString> path, Vector<NonnullOwnPtr<KString>> arguments, Vector<NonnullOwnPtr<KString>> environment, Thread*& new_main_thread, InterruptsState& previous_interrupts_state, int recursion_depth = 0);
|
||||
|
||||
|
|
|
@ -1066,7 +1066,7 @@ public:
|
|||
|
||||
ErrorOr<NonnullOwnPtr<KString>> backtrace();
|
||||
|
||||
Blocker const* blocker() const { return m_blocker; };
|
||||
Blocker const* blocker() const { return m_blocker; }
|
||||
Kernel::Mutex const* blocking_mutex() const { return m_blocking_mutex; }
|
||||
|
||||
#if LOCK_DEBUG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue