Ignore:
Timestamp:
Jun 4, 2008, 10:36:55 PM (17 years ago)
Author:
[email protected]
Message:

2008-06-04 Sam Weinig <[email protected]>

Reviewed by Maciej Stachowiak.

Big cleanup of formatting and whitespace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/PropertyNameArray.h

    r33979 r34372  
    2020 */
    2121
    22 #ifndef KJS_PROPERTY_NAME_ARRAY_H
    23 #define KJS_PROPERTY_NAME_ARRAY_H
     22#ifndef PropertyNameArray_h
     23#define PropertyNameArray_h
    2424
    2525#include "identifier.h"
     
    3737        void add(UString::Rep*);
    3838        void addKnownUnique(UString::Rep* identifier) { m_vector.append(identifier); }
     39
    3940        const_iterator begin() const { return m_vector.begin(); }
    4041        const_iterator end() const { return m_vector.end(); }
     42
    4143        size_t size() const { return m_vector.size(); }
    4244
     
    4547
    4648        Identifier* releaseIdentifiers() { return size() ? m_vector.releaseBuffer() : 0; }
     49
    4750    private:
    4851        typedef HashSet<UString::Rep*, PtrHash<UString::Rep*> > IdentifierSet;
     
    5457} // namespace KJS
    5558
    56 
    57 #endif // KJS_PROPERTY_NAME_ARRAY_H
     59#endif // PropertyNameArray_h
Note: See TracChangeset for help on using the changeset viewer.