Changeset 121 for trunk/src/logger.cc


Ignore:
Timestamp:
06/15/13 17:47:57 (12 years ago)
Author:
epyon
Message:
  • Nova builds with -Weverything/-Wall/-pedantic/etc on: on MSVC 2012 on GCC 4.6.3 on clang 3.2
  • ... without a single fucking warning.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/logger.cc

    r64 r121  
    2121
    2222// log level names
    23 const char *log_level_names[] =
     23static const char *log_level_names[] =
    2424{
    2525        "NONE",
     
    3737
    3838// log level names
    39 const char *log_level_names_pad[] =
     39static const char *log_level_names_pad[] =
    4040{
    4141        "NONE    ",
     
    5757
    5858#if NV_PLATFORM == NV_WINDOWS
    59 unsigned short log_color[] =
     59static unsigned short log_color[] =
    6060{
    6161        FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_INTENSITY,
     
    7272};
    7373#else
    74 const char *log_color[] =
     74static const char *log_color[] =
    7575{
    7676        "\33[37;1m",
Note: See TracChangeset for help on using the changeset viewer.