clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: Icbc50d46e84ee7ef756705e2b19741439a325074
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/writeinterface_mock.hpp b/test/writeinterface_mock.hpp
index 0aed48d..669c1d9 100644
--- a/test/writeinterface_mock.hpp
+++ b/test/writeinterface_mock.hpp
@@ -12,8 +12,7 @@
public:
virtual ~WriteInterfaceMock() = default;
- WriteInterfaceMock(int64_t min, int64_t max) : WriteInterface(min, max)
- {}
+ WriteInterfaceMock(int64_t min, int64_t max) : WriteInterface(min, max) {}
MOCK_METHOD1(write, void(double));
};