The source project of this merge request has been removed.
Added Parentheses in LoadConfigBlob to prevent failing iterator check on MSVC
The overloaded + operator as used in LoadConfigBlob when used on an iterator triggers a check to see if the position being iterated to is valid. Because the + comes first and then the minus happens, this check will fail. Parentheses will fix this possible UB for MSVC systems.