diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-09-15 23:20:31 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-16 17:17:13 +0200 |
commit | c192c303d22a0b4ad698f5ad032527e3f86fbbbf (patch) | |
tree | 69df9fd871c4e56e0ed0d51ccb98490510267533 /AK/UUID.cpp | |
parent | 9fe43041f562d3ee8bfb46063071201158325738 (diff) | |
download | serenity-c192c303d22a0b4ad698f5ad032527e3f86fbbbf.zip |
AK: Use default constructor/destructor instead of declaring an empty one
Default implementations allow for more optimizations.
See: https://pvs-studio.com/en/docs/warnings/v832/
Diffstat (limited to 'AK/UUID.cpp')
-rw-r--r-- | AK/UUID.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/AK/UUID.cpp b/AK/UUID.cpp index 1234c29ad3..cc87d7adca 100644 --- a/AK/UUID.cpp +++ b/AK/UUID.cpp @@ -10,9 +10,6 @@ #include <AK/UUID.h> namespace AK { -UUID::UUID() -{ -} UUID::UUID(Array<u8, 16> uuid_buffer) { |