mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 17:08:00 +02:00
Switch some captures to '?'
This commit is contained in:
parent
7f695596b8
commit
ac6f58f118
4 changed files with 9 additions and 9 deletions
|
@ -345,7 +345,7 @@ namespace System
|
|||
public Result<void> GetValue(StringView name, List<uint8> outData)
|
||||
{
|
||||
bool gotData = false;
|
||||
GetValue(name, scope [&] (regType, regData) =>
|
||||
GetValue(name, scope [?] (regType, regData) =>
|
||||
{
|
||||
if (regType == Windows.REG_BINARY)
|
||||
{
|
||||
|
@ -361,7 +361,7 @@ namespace System
|
|||
public Result<void> GetValue(StringView name, String outData)
|
||||
{
|
||||
bool gotData = false;
|
||||
GetValue(name, scope [&] (regType, regData) =>
|
||||
GetValue(name, scope [?] (regType, regData) =>
|
||||
{
|
||||
if ((regType == Windows.REG_SZ) || (regType == Windows.REG_EXPAND_SZ))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue