Skip to content

Commit 0de9771

Browse files
hsutterbeinhaerter
andauthored
Apply suggestion from @beinhaerter
Co-authored-by: Werner Henze <34543625+beinhaerter@users.noreply.github.com>
1 parent 063ee83 commit 0de9771

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4872,7 +4872,7 @@ This can also come up with concurrency. Ensure that an async operation that acce
48724872
class X {
48734873
public:
48744874
X()
4875-
: a(std::make_unique<int>(12))
4875+
: a{std::make_unique<int>(12)}
48764876
{
48774877
b = std::make_unique<std::jthread>(
48784878
[this]{

0 commit comments

Comments
 (0)