Changeset 106707 in webkit


Ignore:
Timestamp:
Feb 3, 2012 4:24:02 PM (12 years ago)
Author:
andersca@apple.com
Message:

Prefix the typedef in WTF_MAKE_FAST_ALLOCATED with underscores
https://bugs.webkit.org/show_bug.cgi?id=77788

Reviewed by Andreas Kling.

The current typedef name, 'ThisIsHereToForceASemicolonAfterThisMacro', shows up when trying to
code-complete 'this' in Xcode. Prefix the typedef with two underscores to stop this from happening.

  • wtf/FastAllocBase.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r106686 r106707  
     12012-02-03  Anders Carlsson  <andersca@apple.com>
     2
     3        Prefix the typedef in WTF_MAKE_FAST_ALLOCATED with underscores
     4        https://bugs.webkit.org/show_bug.cgi?id=77788
     5
     6        Reviewed by Andreas Kling.
     7
     8        The current typedef name, 'ThisIsHereToForceASemicolonAfterThisMacro', shows up when trying to
     9        code-complete 'this' in Xcode. Prefix the typedef with two underscores to stop this from happening.
     10
     11        * wtf/FastAllocBase.h:
     12
    1132012-02-03  Rob Buis  <rbuis@rim.com>
    214
  • trunk/Source/JavaScriptCore/wtf/FastAllocBase.h

    r103243 r106707  
    130130    } \
    131131private: \
    132 typedef int ThisIsHereToForceASemicolonAfterThisMacro
     132typedef int __thisIsHereToForceASemicolonAfterThisMacro
    133133
    134134namespace WTF {
Note: See TracChangeset for help on using the changeset viewer.