diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2022-12-13 10:29:30 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-14 11:44:32 +0100 |
commit | f96a3c002aa994d5811a677bd93553ccf9a8abf1 (patch) | |
tree | c22c82871d944c345bc6bad1e21d57f37800d1f4 /Tests/LibAudio/TestFLACSpec.cpp | |
parent | 72514d6915a685552a258d2e4c85d9d52184c1b6 (diff) | |
download | serenity-f96a3c002aa994d5811a677bd93553ccf9a8abf1.zip |
Everywhere: Stop shoving things into ::std and mentioning them as such
Note that this still keeps the old behaviour of putting things in std by
default on serenity so the tools can be happy, but if USING_AK_GLOBALLY
is unset, AK behaves like a good citizen and doesn't try to put things
in the ::std namespace.
std::nothrow_t and its friends get to stay because I'm being told that
compilers assume things about them and I can't yeet them into a
different namespace...for now.
Diffstat (limited to 'Tests/LibAudio/TestFLACSpec.cpp')
-rw-r--r-- | Tests/LibAudio/TestFLACSpec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibAudio/TestFLACSpec.cpp b/Tests/LibAudio/TestFLACSpec.cpp index 3782641cc1..64518b8ac3 100644 --- a/Tests/LibAudio/TestFLACSpec.cpp +++ b/Tests/LibAudio/TestFLACSpec.cpp @@ -15,7 +15,7 @@ struct FlacTest : Test::TestCase { FlacTest(LexicalPath path) : Test::TestCase( DeprecatedString::formatted("flac_spec_test_{}", path.basename()), [this]() { run(); }, false) - , m_path(std::move(path)) + , m_path(move(path)) { } |