View | Details | Raw Unified | Return to bug 2632
Collapse All | Expand All

(-)a/src/lte/helper/radio-environment-map-helper.cc (-2 / +2 lines)
 Lines 282-289    Link Here 
282
{
282
{
283
  NS_LOG_FUNCTION (this << xMin << xMax << yMin << yMax);
283
  NS_LOG_FUNCTION (this << xMin << xMax << yMin << yMax);
284
  std::list<RemPoint>::iterator remIt = m_rem.begin ();
284
  std::list<RemPoint>::iterator remIt = m_rem.begin ();
285
  double x;
285
  double x = 0.0;
286
  double y;
286
  double y = 0.0;
287
  for (x = xMin; x < xMax + 0.5*m_xStep; x += m_xStep)
287
  for (x = xMin; x < xMax + 0.5*m_xStep; x += m_xStep)
288
    {
288
    {
289
      for (y = (x == xMin) ? yMin : m_yMin;
289
      for (y = (x == xMin) ? yMin : m_yMin;

Return to bug 2632