Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(111)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/xcode/clang-cxx-language-standard/c++98.cc
Issue
12725005
:
improve xcode_emulation.py (Closed)
Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Added tests
Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
pylib/gyp/xcode_emulation.py
test/ios/deployment-target/check-version-min.c
test/ios/deployment-target/deployment-target.gyp
test/ios/gyptest-deployment-target.py
test/mac/deployment-target/check-version-min.c
test/mac/deployment-target/deployment-target.gyp
test/mac/gyptest-deployment-target.py
test/xcode/clang-cxx-language-standard/c++11.cc
test/xcode/clang-cxx-language-standard/c++98.cc
test/xcode/clang-cxx-language-standard/clang-cxx-language-standard.gyp
test/xcode/clang-cxx-library/clang-cxx-library.gyp
test/xcode/clang-cxx-library/libc++.cc
test/xcode/clang-cxx-library/libstdc++.cc
test/xcode/gyptest-clang-cxx-language-standard.py
test/xcode/gyptest-clang-cxx-library.py
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« pylib/gyp/xcode_emulation.py
('K') |
« test/xcode/clang-cxx-language-standard/c++11.cc
('k') |
test/xcode/clang-cxx-language-standard/clang-cxx-language-standard.gyp »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright (c) 2013 Google Inc. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#if __cplusplus != 199711L
6
#error wrong c++ standard version
7
#endif
8
9
enum cxx11_keywords {
10
alignas,
11
alignof,
12
char16_t,
13
char32_t,
14
constexpr,
15
decltype,
16
noexcept,
17
nullptr,
18
override,
19
static_assert,
20
thread_local,
21
};
22
23
int main() { return 0; }
24
OLD
NEW
« pylib/gyp/xcode_emulation.py
('K') |
« test/xcode/clang-cxx-language-standard/c++11.cc
('k') |
test/xcode/clang-cxx-language-standard/clang-cxx-language-standard.gyp »
('j') |
no next file with comments »
Issue 12725005: improve xcode_emulation.py (Closed)
Created 7 years, 9 months ago by kal
Modified 7 years, 8 months ago
Reviewers: (unused - use chromium), Nico, Sam Clegg
Base URL: http://gyp.googlecode.com/svn/trunk
Comments: 14
This is Rietveld
408576698