Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
commands
/
expression
/
macros
/
macro1.h
blob: e026bc018acee09821b87a8cf87981f7be832478 [
file
]
#include
"macro2.h"
#define
ONE
1
#define
TWO
2
#define
THREE
3
#define
FOUR
4
class
Simple
{
public
:
int
Method
()
{
return
ONE
+
TWO
;
};
};