Changeset 270779 in webkit


Ignore:
Timestamp:
Dec 14, 2020, 10:23:58 AM (5 years ago)
Author:
achristensen@apple.com
Message:

Fix build.

  • src/gpu_info_util/SystemInfo_apple.mm:

(angle::GetSystemInfo):
##if should be #if

Location:
trunk/Source/ThirdParty/ANGLE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r270777 r270779  
     12020-12-14  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix build.
     4
     5        * src/gpu_info_util/SystemInfo_apple.mm:
     6        (angle::GetSystemInfo):
     7        ##if should be #if
     8
    192020-12-14  Dean Jackson  <dino@apple.com>
    210
  • trunk/Source/ThirdParty/ANGLE/src/gpu_info_util/SystemInfo_apple.mm

    r270777 r270779  
    2020bool GetSystemInfo(SystemInfo *info)
    2121{
    22 #    #if defined(ANGLE_PLATFORM_MACOS) || defined(ANGLE_PLATFORM_MACCATALYST)
     22#    if defined(ANGLE_PLATFORM_MACOS) || defined(ANGLE_PLATFORM_MACCATALYST)
    2323    return GetSystemInfo_mac(info);
    2424#    else
Note: See TracChangeset for help on using the changeset viewer.