- Notifications
You must be signed in to change notification settings - Fork425
First iteration of the HTTP client for cpp-netlib v1.0.0a#350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
faade8a19a8b0f2b2c2d3e1bbd36e888689f169c24297a7738bcce7afb7eecf6b51a8207e1e8e4eac52271757f173b083170a99a940e3b59f23c82772ea85e06cd0055ecb5c741f4ec2b700bcc6540a847f9f50ed653b4b055e51306b8b945b8247988f6faf0610d08d9174e65e6883683cca78b0cdd9a7bcf001b89506285830b0dc2d4cb3faaa693442d76b80ab1522df4eb7415d628295fb88976b43ebd75676a7205e3d0cc92af7770240a2309bcd555400654de338200041a1e67d100aaa8847a534b1fd17ae2c6d884a555b603547c58a77829345bedbb006d6b7e7aa528ffad1609ed29bb42b4f7a3e856d945654e8d926274d99b80c858330739a4a184d278d68fb57d043072b4692784be2b5a7afed49695e0744373fc1b02948f29ec7e2416fe0458d5f9444b91852012b58a8bad17619255ace3bccf6eb8e03b6c2bee8f5ea835d8d7446441091d5b65ee23ef8d06830eba6ff897f1238f443e33f13a465cd849310b1ebc7762e639f47File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| # BasedOnStyle: Google | ||
| AccessModifierOffset: -1 | ||
| ConstructorInitializerIndentWidth: 4 | ||
| AlignEscapedNewlinesLeft: true | ||
| AlignTrailingComments: true | ||
| AllowAllParametersOfDeclarationOnNextLine: true | ||
| AllowShortIfStatementsOnASingleLine: true | ||
| AllowShortLoopsOnASingleLine: true | ||
| AlwaysBreakTemplateDeclarations: true | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I'm not so happy with this style. | ||
| AlwaysBreakBeforeMultilineStrings: true | ||
| BreakBeforeBinaryOperators: false | ||
| BreakConstructorInitializersBeforeComma: false | ||
| BinPackParameters: true | ||
| ColumnLimit: 80 | ||
| ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
| DerivePointerBinding: true | ||
| ExperimentalAutoDetectBinPacking: false | ||
| IndentCaseLabels: true | ||
| MaxEmptyLinesToKeep: 1 | ||
| NamespaceIndentation: All | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Can we please not indent namespaces? | ||
| ObjCSpaceBeforeProtocolList: false | ||
| PenaltyBreakComment: 60 | ||
| PenaltyBreakString: 1000 | ||
| PenaltyBreakFirstLessLess: 120 | ||
| PenaltyExcessCharacter: 1000000 | ||
| PenaltyReturnTypeOnItsOwnLine: 200 | ||
| PointerBindsToType: true | ||
| SpacesBeforeTrailingComments: 2 | ||
| Cpp11BracedListStyle: true | ||
| Standard: Auto | ||
| IndentWidth: 2 | ||
| TabWidth: 8 | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Can we set this to 4? | ||
| UseTab: false | ||
| BreakBeforeBraces: Attach | ||
| IndentFunctionDeclarationAfterType: true | ||
| SpacesInParentheses: false | ||
| SpaceInEmptyParentheses: false | ||
| SpacesInCStyleCastParentheses: false | ||
| SpaceAfterControlStatementKeyword: true | ||