aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-27 01:22:19 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-27 01:24:39 +0300
commit7a4b8c5c71832276cb8bb4d9ff0456791f62a90c (patch)
tree111aa37fa2e12b4a7bbc29b35a6b3edd0501d41f
parentrework Process API & tests (diff)
downloadwinapi-common-7a4b8c5c71832276cb8bb4d9ff0456791f62a90c.tar.gz
winapi-common-7a4b8c5c71832276cb8bb4d9ff0456791f62a90c.zip
clang-format
-rw-r--r--test/unit_tests/shared/command.hpp6
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) {