Changeset 167209 in webkit


Ignore:
Timestamp:
Apr 13, 2014 10:29:47 PM (10 years ago)
Author:
ljaehun.lim@samsung.com
Message:

Use #include instead of #import
https://bugs.webkit.org/show_bug.cgi?id=131604

Reviewed by Darin Adler.

Fix "warning: #import is a deprecated GCC extension [-Wdeprecated]".

  • TestWebKitAPI/Tests/WTF/StringView.cpp:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r167191 r167209  
     12014-04-13  Jaehun Lim  <ljaehun.lim@samsung.com>
     2
     3        Use #include instead of #import
     4        https://bugs.webkit.org/show_bug.cgi?id=131604
     5
     6        Reviewed by Darin Adler.
     7
     8        Fix "warning: #import is a deprecated GCC extension [-Wdeprecated]".
     9
     10        * TestWebKitAPI/Tests/WTF/StringView.cpp:
     11
    1122014-04-12  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/Tools/TestWebKitAPI/Tests/WTF/StringView.cpp

    r161785 r167209  
    2626#include "config.h"
    2727
    28 #import <wtf/text/StringView.h>
     28#include <wtf/text/StringView.h>
    2929
    3030namespace TestWebKitAPI {
Note: See TracChangeset for help on using the changeset viewer.