static bool ParseConfigValue()

in aws_common/src/sdk_utils/auth/service_credentials_provider.cpp [151:159]


static bool ParseConfigValue(std::string & value, int32_t & result)
{
  int32_t tmp = Aws::Utils::StringUtils::ConvertToInt32(value.c_str());
  if (tmp > 0) {
    result = tmp;
    return true;
  }
  return false;
}