diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-27 01:22:19 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-27 01:24:39 +0300 |
commit | 7a4b8c5c71832276cb8bb4d9ff0456791f62a90c (patch) | |
tree | 111aa37fa2e12b4a7bbc29b35a6b3edd0501d41f /test | |
parent | rework Process API & tests (diff) | |
download | winapi-common-7a4b8c5c71832276cb8bb4d9ff0456791f62a90c.tar.gz winapi-common-7a4b8c5c71832276cb8bb4d9ff0456791f62a90c.zip |
clang-format
Diffstat (limited to 'test')
-rw-r--r-- | test/unit_tests/shared/command.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/unit_tests/shared/command.hpp b/test/unit_tests/shared/command.hpp index de7c704..69c230f 100644 --- a/test/unit_tests/shared/command.hpp +++ b/test/unit_tests/shared/command.hpp @@ -94,8 +94,10 @@ public: } void get_result(Action action, const ReadResult& read_result) { - return get_result( - action, [](Args&) {}, read_result); + // clang-format off + // lmao, why would you want to place the arguments on the next line? + return get_result(action, [](Args&) {}, read_result); + // clang-format on } void get_result(Action action) { |