Is return {...}; implicit ctor OK for LLDB? I have found only one line (return {sdk};) in rG5935227e11f5 using that syntax and I would normally use it everywhere.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Is return {...}; implicit ctor OK for LLDB? I have found only one line (return {sdk};) in rG5935227e11f5 using that syntax and I would normally use it everywhere.
We don't have a policy on that. I personally wouldn't recommend using it literally _everywhere_ (this can get messy in very long function and particularly if you start nesting the {}s), but here it's perfectly fine.