Ignore:
Timestamp:
Nov 8, 2007, 1:26:49 PM (18 years ago)
Author:
[email protected]
Message:

Windows build fix.

  • kjs/date_object.cpp: (KJS::DateProtoFuncToLocaleString::callAsFunction): Fix unused arg warning. (KJS::DateProtoFuncToLocaleDateString::callAsFunction): ditto (KJS::DateProtoFuncToLocaleTimeString::callAsFunction): ditto
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/date_object.cpp

    r27608 r27610  
    5858#include <wtf/MathExtras.h>
    5959#include <wtf/StringExtras.h>
     60#include <wtf/UnusedParam.h>
    6061
    6162#if PLATFORM(MAC)
     
    10231024    return jsString(formatLocaleDate(exec, secs, true, true, args));
    10241025#else
     1026    UNUSED_PARAM(args);
     1027
    10251028    const bool utc = false;
    10261029
     
    10461049    return jsString(formatLocaleDate(exec, secs, true, false, args));
    10471050#else
     1051    UNUSED_PARAM(args);
     1052
    10481053    const bool utc = false;
    10491054
     
    10691074    return jsString(formatLocaleDate(exec, secs, false, true, args));
    10701075#else
     1076    UNUSED_PARAM(args);
     1077
    10711078    const bool utc = false;
    10721079
Note: See TracChangeset for help on using the changeset viewer.