Changeset 121338 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jun 27, 2012, 6:02:03 AM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r121336 r121338 1 2012-06-27 Oswald Buddenhagen <[email protected]> 2 3 [Qt] Remove redundant c++11 warning suppression code 4 5 This is already handled in default_post. 6 7 Reviewed by Tor Arne Vestbø. 8 9 * Target.pri: 10 1 11 2012-06-26 Tor Arne Vestbø <[email protected]> 2 12 -
trunk/Source/JavaScriptCore/Target.pri
r121336 r121338 262 262 *-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x 263 263 } 264 265 # GCC 4.6 and after. 266 greaterThan(QT_GCC_MINOR_VERSION, 5) { 267 if (!contains(QMAKE_CXXFLAGS, -std=c++0x) && !contains(QMAKE_CXXFLAGS, -std=gnu++0x)) { 268 # We need to deactivate those warnings because some names conflicts with upcoming c++0x types (e.g.nullptr). 269 QMAKE_CFLAGS_WARN_ON += -Wno-c++0x-compat 270 QMAKE_CXXFLAGS_WARN_ON += -Wno-c++0x-compat 271 QMAKE_CFLAGS += -Wno-c++0x-compat 272 QMAKE_CXXFLAGS += -Wno-c++0x-compat 273 } 274 } 275 } 264 }
Note:
See TracChangeset
for help on using the changeset viewer.