log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
hg
>
CbC
>
CbC_llvm
annotate clang/test/PCH/enum.h @ 150:
1d019706d866
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
LLVM10
author
anatofuz
date
Thu, 13 Feb 2020 15:10:13 +0900
parents
children
Ignore whitespace changes -
Everywhere:
Within whitespace:
At end of lines:
rev
line source
150
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
1
/* Used in enum.c test */
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
2
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
3
enum Color {
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
4
Red,
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
5
Green,
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
6
Blue
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
7
};
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
8
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
9
enum Shape {
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
10
Square,
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
11
Triangle = 17,
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
12
Rhombus,
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
13
Circle
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
14
};
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
15
1d019706d866
LLVM10
anatofuz
parents:
diff
changeset
16
enum Shape aRoundShape = Circle;