Skip to content

Commit 8cfe75e

Browse files
committed
LambdaBodyIndentation: OuterScope
1 parent 23791aa commit 8cfe75e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ KeepEmptyLines:
190190
AtStartOfBlock: true
191191
AtStartOfFile: true
192192
KeepFormFeed: false
193-
LambdaBodyIndentation: Signature
193+
LambdaBodyIndentation: OuterScope
194194
LineEnding: DeriveLF
195195
MacroBlockBegin: ""
196196
MacroBlockEnd: ""

src/DotNameLib.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ namespace dotnamecpp::v1 {
5757

5858
// Run for specified duration
5959
if (durationSeconds > 0) {
60-
logger_->infoStream() << "MOCK BUSINESS LOGIC running for " << durationSeconds << " seconds ...";
60+
logger_->infoStream() << "MOCK BUSINESS LOGIC running for " << durationSeconds
61+
<< " seconds ...";
6162
for (int i = 0; i < durationSeconds && !shouldStop_.load(); ++i) {
6263
std::this_thread::sleep_for(std::chrono::seconds(1));
6364
}

0 commit comments

Comments
 (0)