From 2d07b91c9045992246e4bd5482bb3d5c2e24cbee Mon Sep 17 00:00:00 2001 From: Derek Christ Date: Tue, 14 Sep 2021 19:10:57 +0200 Subject: [PATCH] Add .clang-format for TraceAnalyzer --- DRAMSys/traceAnalyzer/.clang-format | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 DRAMSys/traceAnalyzer/.clang-format diff --git a/DRAMSys/traceAnalyzer/.clang-format b/DRAMSys/traceAnalyzer/.clang-format new file mode 100644 index 00000000..950e9ea8 --- /dev/null +++ b/DRAMSys/traceAnalyzer/.clang-format @@ -0,0 +1,13 @@ +--- +BasedOnStyle: LLVM +AccessModifierOffset: '-4' +AllowShortFunctionsOnASingleLine: None +AllowShortIfStatementsOnASingleLine: Never +AllowShortLoopsOnASingleLine: 'false' +AlwaysBreakTemplateDeclarations: 'true' +BreakBeforeBraces: Allman +ColumnLimit: '120' +IndentWidth: '4' +PointerAlignment: Right + +...