Changeset 374 for trunk/src/curses


Ignore:
Timestamp:
05/26/15 17:35:06 (10 years ago)
Author:
epyon
Message:
  • MASSIVE commit
  • common.hh - size_t, ptrdiff_t, nv:: namespace, NV_ALIGN_OF and basic template tools
  • STL - algorithm.hh, iterator.hh, limits.hh, numeric.hh and type_info.hh
  • STL - updates to memory, array and string
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/curses/curses_terminal.cc

    r369 r374  
    6565        }
    6666        mvaddch( p.y-1, p.x-1, ch );
    67         move( m_cursor.y-1, m_cursor.x-1 );
     67        ::move( m_cursor.y-1, m_cursor.x-1 );
    6868}
    6969
     
    8080        m_update_needed = true;
    8181        ::clear();
    82         move( m_cursor.y-1, m_cursor.x-1 );
     82        ::move( m_cursor.y-1, m_cursor.x-1 );
    8383}
    8484
     
    160160{
    161161        terminal::set_cursor( p );
    162         move( m_cursor.y-1, m_cursor.x-1 );
     162        ::move( m_cursor.y-1, m_cursor.x-1 );
    163163}
    164164
Note: See TracChangeset for help on using the changeset viewer.