Browse Source

Merge pull request #6955

e167af2 [doc] Remove excessive white space (MarcoFalke)
e0eeb67 [trivial] clang-format: Set AlignAfterOpenBracket: false (MarcoFalke)
0af8fe4 devtools: Update README.md (MarcoFalke)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
4ee149a6db
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 5
      contrib/devtools/README.md
  2. 1
      doc/build-unix.md
  3. 3
      src/.clang-format

5
contrib/devtools/README.md

@ -62,6 +62,11 @@ optimize-pngs.py
A script to optimize png files in the bitcoin A script to optimize png files in the bitcoin
repository (requires pngcrush). repository (requires pngcrush).
security-check.py and test-security-check.py
============================================
Perform basic ELF security checks on a series of executables.
symbol-check.py symbol-check.py
=============== ===============

1
doc/build-unix.md

@ -213,6 +213,7 @@ Hardening enables the following features:
scanelf -e ./bitcoin scanelf -e ./bitcoin
The output should contain: The output should contain:
TYPE TYPE
ET_DYN ET_DYN

3
src/.clang-format

@ -1,4 +1,6 @@
Language: Cpp
AccessModifierOffset: -4 AccessModifierOffset: -4
AlignAfterOpenBracket: false
AlignEscapedNewlinesLeft: true AlignEscapedNewlinesLeft: true
AlignTrailingComments: true AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false AllowAllParametersOfDeclarationOnNextLine: false
@ -26,7 +28,6 @@ IndentCaseLabels: false
IndentFunctionDeclarationAfterType: false IndentFunctionDeclarationAfterType: false
IndentWidth: 4 IndentWidth: 4
KeepEmptyLinesAtTheStartOfBlocks: false KeepEmptyLinesAtTheStartOfBlocks: false
Language: Cpp
MaxEmptyLinesToKeep: 2 MaxEmptyLinesToKeep: 2
NamespaceIndentation: None NamespaceIndentation: None
ObjCSpaceAfterProperty: false ObjCSpaceAfterProperty: false

Loading…
Cancel
Save