repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git]
/
clang-tools-extra
/
test
/
clang-move
/
Inputs
/
macro_helper_test.cpp
blob
c2c1e1e1aae6dc4866e4d60503d62758676b1c21
1
#include
"macro_helper_test.h"
2
3
#define DEFINE(name) \
4
namespace ns { \
5
static const bool t1 = false; \
6
bool t2_##name = t1; \
7
bool t3_##name = t1; \
8
} \
9
using ns::t2_##name;
10
11
DEFINE
(
test
)
12
13
void
f1
() {}