Skip to content

Commit 912ad87

Browse files
committed
Merge remote-tracking branch 'upstream/master' into patch-4
2 parents ecc19ca + 384e7e4 commit 912ad87

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ vignettes/notyet
1212
doxyfile
1313
.travis.yml
1414
.dir-locals.el
15+
.clang_format
1516
vignettes/getCurrentVersionsOfCitedPackages.R

.clang_format

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
Language: Cpp
3+
# BasedOnStyle: LLVM
4+
AccessModifierOffset: -4
5+
AlignAfterOpenBracket: true
6+
AlignEscapedNewlinesLeft: false
7+
AlignOperands: true
8+
AlignTrailingComments: true
9+
AlignConsecutiveAssignments: false
10+
AllowAllParametersOfDeclarationOnNextLine: true
11+
AllowShortBlocksOnASingleLine: false
12+
AllowShortCaseLabelsOnASingleLine: false
13+
AllowShortIfStatementsOnASingleLine: false
14+
AllowShortLoopsOnASingleLine: false
15+
AllowShortFunctionsOnASingleLine: All
16+
AlwaysBreakAfterDefinitionReturnType: false
17+
AlwaysBreakTemplateDeclarations: false
18+
AlwaysBreakBeforeMultilineStrings: false
19+
BreakBeforeBinaryOperators: None
20+
BreakBeforeTernaryOperators: true
21+
BreakConstructorInitializersBeforeComma: false
22+
BinPackParameters: true
23+
BinPackArguments: true
24+
ColumnLimit: 80
25+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
26+
ConstructorInitializerIndentWidth: 4
27+
DerivePointerAlignment: false
28+
ExperimentalAutoDetectBinPacking: false
29+
IndentCaseLabels: false
30+
IndentWrappedFunctionNames: false
31+
IndentFunctionDeclarationAfterType: false
32+
MaxEmptyLinesToKeep: 1
33+
KeepEmptyLinesAtTheStartOfBlocks: true
34+
NamespaceIndentation: None
35+
ObjCBlockIndentWidth: 2
36+
ObjCSpaceAfterProperty: false
37+
ObjCSpaceBeforeProtocolList: true
38+
PenaltyBreakBeforeFirstCallParameter: 19
39+
PenaltyBreakComment: 300
40+
PenaltyBreakString: 1000
41+
PenaltyBreakFirstLessLess: 120
42+
PenaltyExcessCharacter: 1000000
43+
PenaltyReturnTypeOnItsOwnLine: 60
44+
PointerAlignment: Left
45+
SpacesBeforeTrailingComments: 2
46+
Cpp11BracedListStyle: true
47+
Standard: Cpp03
48+
IndentWidth: 4
49+
TabWidth: 4
50+
UseTab: Never
51+
BreakBeforeBraces: Attach
52+
SpacesInParentheses: false
53+
SpacesInSquareBrackets: false
54+
SpacesInAngles: false
55+
SpaceInEmptyParentheses: false
56+
SpacesInCStyleCastParentheses: false
57+
SpaceAfterCStyleCast: true
58+
SpacesInContainerLiterals: true
59+
SpaceBeforeAssignmentOperators: true
60+
ContinuationIndentWidth: 4
61+
CommentPragmas: '^ IWYU pragma:'
62+
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
63+
SpaceBeforeParens: ControlStatements
64+
DisableFormat: false
65+
...
66+

vignettes/Rcpp.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ @Manual{CRAN:RcppGSL
228228
title = {RcppGSL: Rcpp integration for GNU GSL vectors and matrices},
229229
author = {Romain Fran\c{c}ois and Dirk Eddelbuettel},
230230
year = 2015,
231-
note = {R package version 0.2.4},
231+
note = {R package version 0.2.5},
232232
url = CRAN # "package=RcppGSL"
233233
}
234234

0 commit comments

Comments
 (0)