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/SourceProvider.h

    r33979 r34372  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28  
     28
    2929#ifndef SourceProvider_h
    3030#define SourceProvider_h
     
    3737    class SourceProvider : public RefCounted<SourceProvider> {
    3838    public:
    39         virtual ~SourceProvider() {}
     39        virtual ~SourceProvider() { }
    4040        virtual UString getRange(int start, int end) const = 0;
    4141        virtual const UChar* data() const = 0;
     
    5252
    5353    private:
    54         UStringSourceProvider(const UString& source) : m_source(source) {}
     54        UStringSourceProvider(const UString& source)
     55            : m_source(source)
     56        {
     57        }
     58
    5559        UString m_source;
    5660    };
    5761
    58 }
     62} // namespace KJS
    5963
    6064#endif // SourceProvider_h
Note: See TracChangeset for help on using the changeset viewer.