Changeset 54619 in webkit


Ignore:
Timestamp:
Feb 10, 2010 1:18:50 PM (14 years ago)
Author:
ap@apple.com
Message:

Addressing issues found by style bot.

  • wtf/ValueCheck.h: Renamed header guard to match final file name.
  • wtf/Vector.h: (WTF::::checkConsistency): Remove braces around a one-line clause.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r54618 r54619  
     12010-02-10  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Addressing issues found by style bot.
     4
     5        * wtf/ValueCheck.h: Renamed header guard to match final file name.
     6
     7        * wtf/Vector.h: (WTF::::checkConsistency): Remove braces around a one-line clause.
     8
    192010-02-09  Alexey Proskuryakov  <ap@apple.com>
    210
  • trunk/JavaScriptCore/wtf/ValueCheck.h

    r54618 r54619  
    2424 */
    2525
    26 #ifndef ValueTraits_h
    27 #define ValueTraits_h
     26#ifndef ValueCheck_h
     27#define ValueCheck_h
    2828
    2929// For malloc_size and _msize.
     
    6262}
    6363
    64 #endif // ValueTraits_h
     64#endif // ValueCheck_h
  • trunk/JavaScriptCore/wtf/Vector.h

    r54618 r54619  
    994994    {
    995995#if !ASSERT_DISABLED
    996         for (size_t i = 0; i < size(); ++i) {
     996        for (size_t i = 0; i < size(); ++i)
    997997            ValueCheck<T>::checkConsistency(at(i));
    998         }
    999998#endif
    1000999    }
Note: See TracChangeset for help on using the changeset viewer.