Skip to content

Commit eb73e2a

Browse files
author
andrew-elder
committed
Merge pull request audioscience#265 from andrew-elder/master
master update
2 parents ba7404a + 987f61f commit eb73e2a

File tree

261 files changed

+23344
-20803
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

261 files changed

+23344
-20803
lines changed

.clang-format

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
---
2+
Language: Cpp
3+
AccessModifierOffset: -4
4+
AlignAfterOpenBracket: Align
5+
AlignConsecutiveAssignments: false
6+
AlignConsecutiveDeclarations: false
7+
AlignEscapedNewlinesLeft: false
8+
AlignOperands: true
9+
AlignTrailingComments: true
10+
AllowAllParametersOfDeclarationOnNextLine: true
11+
AllowShortBlocksOnASingleLine: false
12+
AllowShortCaseLabelsOnASingleLine: false
13+
AllowShortFunctionsOnASingleLine: All
14+
AllowShortIfStatementsOnASingleLine: false
15+
AllowShortLoopsOnASingleLine: false
16+
AlwaysBreakAfterDefinitionReturnType: None
17+
AlwaysBreakAfterReturnType: None
18+
AlwaysBreakBeforeMultilineStrings: false
19+
AlwaysBreakTemplateDeclarations: false
20+
BinPackArguments: true
21+
BinPackParameters: true
22+
BraceWrapping:
23+
AfterClass: true
24+
AfterControlStatement: true
25+
AfterEnum: true
26+
AfterFunction: true
27+
AfterNamespace: true
28+
AfterObjCDeclaration: true
29+
AfterStruct: true
30+
AfterUnion: false
31+
BeforeCatch: true
32+
BeforeElse: true
33+
IndentBraces: false
34+
BreakBeforeBinaryOperators: None
35+
BreakBeforeBraces: Allman
36+
BreakBeforeTernaryOperators: true
37+
BreakConstructorInitializersBeforeComma: false
38+
BreakAfterJavaFieldAnnotations: false
39+
BreakStringLiterals: true
40+
ColumnLimit: 0
41+
CommentPragmas: '^ IWYU pragma:'
42+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
43+
ConstructorInitializerIndentWidth: 4
44+
ContinuationIndentWidth: 4
45+
Cpp11BracedListStyle: true
46+
DerivePointerAlignment: false
47+
DisableFormat: false
48+
ExperimentalAutoDetectBinPacking: false
49+
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
50+
IncludeCategories:
51+
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
52+
Priority: 2
53+
- Regex: '^(<|"(gtest|isl|json)/)'
54+
Priority: 3
55+
- Regex: '.*'
56+
Priority: 1
57+
IncludeIsMainRegex: '$'
58+
IndentCaseLabels: false
59+
IndentWidth: 4
60+
IndentWrappedFunctionNames: false
61+
KeepEmptyLinesAtTheStartOfBlocks: true
62+
MacroBlockBegin: ''
63+
MacroBlockEnd: ''
64+
MaxEmptyLinesToKeep: 1
65+
NamespaceIndentation: Inner
66+
ObjCBlockIndentWidth: 2
67+
ObjCSpaceAfterProperty: false
68+
ObjCSpaceBeforeProtocolList: true
69+
PenaltyBreakBeforeFirstCallParameter: 19
70+
PenaltyBreakComment: 300
71+
PenaltyBreakFirstLessLess: 120
72+
PenaltyBreakString: 1000
73+
PenaltyExcessCharacter: 1000000
74+
PenaltyReturnTypeOnItsOwnLine: 60
75+
PointerAlignment: Middle
76+
ReflowComments: true
77+
SortIncludes: false
78+
SpaceAfterCStyleCast: false
79+
SpaceBeforeAssignmentOperators: true
80+
SpaceBeforeParens: ControlStatements
81+
SpaceInEmptyParentheses: false
82+
SpacesBeforeTrailingComments: 1
83+
SpacesInAngles: false
84+
SpacesInContainerLiterals: true
85+
SpacesInCStyleCastParentheses: false
86+
SpacesInParentheses: false
87+
SpacesInSquareBrackets: false
88+
Standard: Cpp11
89+
TabWidth: 8
90+
UseTab: Never
91+
JavaScriptQuotes: Leave
92+
...
93+

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ before_install:
1111
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
1212
- sudo apt-get update -qq
1313
- sudo apt-get install -y libpcap-dev linux-headers-3.13.0-36-generic cmake
14+
- sudo apt-get install -y doxygen graphviz
1415
- if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq libstdc++-4.8-dev; fi
1516
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
1617
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
1718
env: BUILD_KERNEL=3.13.0-36-generic
1819
install:
19-
script: ./travis.sh
20+
script:
21+
- ./travis.sh
22+
- if [ "$TRAVIS_BRANCH" = "staging" ]; then ./publish_doxygen.sh; fi

0 commit comments

Comments
 (0)