Compare commits

..

No commits in common. "645c2d8aaf80d3502bf2598c4caeffe91e1f19a9" and "d9afdf279a35e744bdd733c3add43eac605f2569" have entirely different histories.

26 changed files with 267 additions and 268 deletions

View File

@ -53,7 +53,7 @@ ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DerivePointerAlignment: false
DerivePointerAlignment: true
DisableFormat: false
FixNamespaceComments: true
ForEachMacros:
@ -94,8 +94,7 @@ PenaltyBreakString: 1000
PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 2000
PointerAlignment: Right
ReferenceAlignment: Right
PointerAlignment: Left
RawStringFormats:
- Language: Cpp
Delimiters:
@ -126,7 +125,7 @@ RawStringFormats:
BasedOnStyle: google
ReflowComments: true
SeparateDefinitionBlocks: Always
SortIncludes: Never
SortIncludes: false
SortUsingDeclarations: true
SpaceAfterCStyleCast: false
SpaceAfterTemplateKeyword: true

View File

@ -14,7 +14,7 @@ int main(int argc, char *argv[])
// Connect to a public echo server
if (argc > 1 && std::string(argv[1]) == "-p")
{
server = "wss://echo.websocket.events/.ws";
server = "wss://echo.websocket.org";
path = "/";
}
else