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