Commit 0661fce4 by Jamie Madill

Add c++0x flag to cflags on non-win platforms.

Our previous change to use static_assert leads the new wave of c++11 features. BUG= Change-Id: Id6d382475daa7029109dab1017a59b5ef07c18df Reviewed-on: https://chromium-review.googlesource.com/221267Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarKenneth Russell <kbr@chromium.org> Tested-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 8e929230
......@@ -221,7 +221,11 @@
{ # OS != win
'target_defaults':
{
'cflags': [ '-fPIC' ],
'cflags':
[
'-fPIC',
'-std=c++0x',
],
},
}],
['OS != "win" and OS != "mac"',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment