File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 11# AlignAfterOpenBracket: BlockIndent
22AlignAfterOpenBracket : AlwaysBreak
33AlignEscapedNewlines : DontAlign
4- AlignOperands : true
54AlignTrailingComments : false
65AllowAllArgumentsOnNextLine : true
76AllowAllConstructorInitializersOnNextLine : false
8- AllowAllParametersOfDeclarationOnNextLine : true
97AllowShortBlocksOnASingleLine : Empty
108AllowShortCaseLabelsOnASingleLine : false
119AllowShortFunctionsOnASingleLine : None
@@ -36,7 +34,6 @@ BraceWrapping:
3634 SplitEmptyFunction : false
3735 SplitEmptyNamespace : true
3836 SplitEmptyRecord : false
39- AlignEscapedNewlines : DontAlign
4037BreakConstructorInitializers : BeforeComma
4138BreakInheritanceList : BeforeComma
4239BreakStringLiterals : true
Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ namespace Roar
599599 auto request = Request<BodyT>(self->req_ .release (), std::move (self->originalExtensions_ ));
600600 try
601601 {
602- self->promise_ ->template resolve (Detail::ref (*self->session_ ), Detail::cref (request));
602+ self->promise_ ->resolve (Detail::ref (*self->session_ ), Detail::cref (request));
603603 }
604604 catch (std::exception const & exc)
605605 {
@@ -635,7 +635,7 @@ namespace Roar
635635 {
636636 try
637637 {
638- self->promise_ ->template resolve (
638+ self->promise_ ->resolve (
639639 Detail::ref (*self->session_ ), Detail::cref (self->req_ ), self);
640640 }
641641 catch (std::exception const & exc)
You can’t perform that action at this time.
0 commit comments