Invoke-CodeFormat on changes ingested from inbox

This commit is contained in:
Dustin Howett 2020-03-12 16:37:44 -07:00
parent ffd8f53529
commit f276d83c7a

View file

@ -19,7 +19,7 @@ SAFEARRAY* BuildIntSafeArray(std::basic_string_view<int> data)
{
LONG lIndex = 0;
if (FAILED(SizeTToLong(i, &lIndex)) ||
FAILED(SafeArrayPutElement(psa, &lIndex, (void*)&(data.at(i)))))
FAILED(SafeArrayPutElement(psa, &lIndex, (void*)&(data.at(i)))))
{
SafeArrayDestroy(psa);
psa = nullptr;