From 10082afc6087c459ebadfc189546dd5cc8668f59 Mon Sep 17 00:00:00 2001 From: efecan Date: Tue, 22 Jul 2025 18:04:57 +0300 Subject: [PATCH 1/2] docs: Fix clone instructions (cd binaryrpc-framework instead of cd binaryrpc) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c5e068..4cfefd4 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ This process will compile the library. ```bash # 1. Clone the repository git clone https://github.com/efecan0/binaryrpc-framework.git --recurse-submodules -cd binaryrpc +cd binaryrpc-framework # 2. Configure the build cmake --preset release From 770a35c54fa913c9f7277baf4d45485e7c0a891a Mon Sep 17 00:00:00 2001 From: efecan Date: Wed, 23 Jul 2025 14:09:49 +0300 Subject: [PATCH 2/2] Add .clang-format with LLVM style (4 spaces, 100 col limit) --- .clang-format | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..4555fbe --- /dev/null +++ b/.clang-format @@ -0,0 +1,6 @@ +BasedOnStyle: LLVM +IndentWidth: 4 +ColumnLimit: 100 +AllowShortFunctionsOnASingleLine: Inline +DerivePointerAlignment: false +PointerAlignment: Left \ No newline at end of file